We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
asyncio
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's an example that reproduces the issue:
import seleniumbase, platform, string from seleniumbase import SB letters = string.ascii_lowercase[0:2] print(platform.python_version()) print(seleniumbase.__version__) with SB(uc=True) as sb: for _id, letter in enumerate(letters): print(_id + 1, letter) sb.activate_cdp_mode() sb.connect() sb.open(f"data:text/html,<h1>Page {letter}</h1>") sb.assert_text(f"Page {letter}")
The text was updated successfully, but these errors were encountered:
This was resolved in 4.37.11 - https://github.com/seleniumbase/SeleniumBase/releases/tag/v4.37.11
4.37.11
Sorry, something went wrong.
mdmintz
Successfully merging a pull request may close this issue.
Activating CDP Mode more than once for the same driver can lead to
asyncio
errorsHere's an example that reproduces the issue:
The text was updated successfully, but these errors were encountered: