Skip to content

chore(deps): update dependency selenium to v4.26.1 #2032

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 3 commits into from
Nov 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
selenium==4.26.0
selenium==4.26.1
pytest
trio
pytest-trio
Expand Down
4 changes: 2 additions & 2 deletions examples/python/tests/drivers/test_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ def test_set_browser_name():

def test_set_browser_version():
options = webdriver.ChromeOptions()
options.browser_version = 'latest'
assert options.capabilities['browserVersion'] == 'latest'
options.browser_version = 'stable'
assert options.capabilities['browserVersion'] == 'stable'
driver = webdriver.Chrome(options=options)
driver.get("https://www.selenium.dev/")
driver.quit()
Expand Down
2 changes: 1 addition & 1 deletion examples/python/tests/drivers/test_remote_webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_start_remote(server):
options = webdriver.ChromeOptions()
driver = webdriver.Remote(command_executor=server, options=options)

assert "localhost" in driver.command_executor._url
assert "localhost" in driver.command_executor._client_config.remote_server_addr
driver.quit()


Expand Down
Loading