-
Notifications
You must be signed in to change notification settings - Fork 1.4k
CDP Mode - Patch 26 #3441
New issue
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
Merged
Merged
CDP Mode - Patch 26 #3441
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
5119ee0
Update `uc_gui_click_captcha()`
mdmintz fcdcf83
Refactor Headless Mode
mdmintz 08f8f3a
Refactor BaseCase
mdmintz b539039
Fix --xvfb compatibility with --reuse-session / --rs
mdmintz 6ea000a
Update "sbase gui" / "sbase commander" settings
mdmintz 28eef66
Refactor completed pytest-html reports
mdmintz c4d2d1a
Refresh Python dependencies
mdmintz 70be9b0
Update examples
mdmintz c9c5984
Update the docs
mdmintz 2d0a322
Version 4.34.0
mdmintz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
examples/cdp_mode/raw_glassdoor.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from seleniumbase import SB | ||
|
||
with SB(uc=True, test=True, ad_block=True) as sb: | ||
url = "https://www.glassdoor.com/Reviews/index.htm" | ||
sb.activate_cdp_mode(url) | ||
sb.uc_gui_click_captcha() | ||
sb.highlight('[data-test="global-nav-glassdoor-logo"]') | ||
sb.highlight('[data-test="site-header-companies"]') | ||
sb.highlight('[data-test="search-button"]') | ||
sb.highlight('[data-test="sign-in-button"]') | ||
sb.highlight('[data-test="company-search-autocomplete"]') |
9 changes: 9 additions & 0 deletions
examples/raw_invisible_captcha.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from seleniumbase import SB | ||
|
||
with SB(uc=True, test=True, incognito=True) as sb: | ||
url = "https://seleniumbase.io/apps/invisible_recaptcha" | ||
sb.activate_cdp_mode(url) | ||
sb.sleep(1) | ||
sb.assert_element("img#captcha-success", timeout=3) | ||
sb.set_messenger_theme(location="top_left") | ||
sb.post_message("SeleniumBase wasn't detected", duration=3) |
9 changes: 0 additions & 9 deletions
examples/raw_recaptcha.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
examples/uc_cdp_events.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
seleniumbase/__version__.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# seleniumbase package | ||
__version__ = "4.33.15" | ||
__version__ = "4.34.0" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.