Skip to content

Commit 7f037b0

Browse files
committed
fix deprecated selenium call
1 parent 2464871 commit 7f037b0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pycodestyle
3030
pydata-sphinx-theme
3131
pytest
3232
scipy
33-
selenium<4.27.0
33+
selenium
3434
setuptools_scm
3535
sphinx
3636
types-requests

tests/selenium/test_geojson_selenium.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ def test_geojson(driver):
3535
)
3636
assert control_label.text == "geojson"
3737
control_input = control_label.find_element(By.CSS_SELECTOR, value="input")
38-
assert control_input.get_attribute("checked") is None
38+
assert control_input.get_dom_attribute("checked") is None

0 commit comments

Comments
 (0)