We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0872d32 commit b8c6d7eCopy full SHA for b8c6d7e
py/test/selenium/webdriver/remote/remote_custom_locator_tests.py
@@ -50,7 +50,9 @@ def test_find_element_with_custom_locator(custom_locator_driver):
50
51
52
def test_find_elements_with_custom_locator(custom_locator_driver):
53
- custom_locator_driver.get("data:text/html,<div custom-attr='example'>Test1</div><div custom-attr='example'>Test2</div>")
+ custom_locator_driver.get(
54
+ "data:text/html,<div custom-attr='example'>Test1</div><div custom-attr='example'>Test2</div>"
55
+ )
56
elements = custom_locator_driver.find_elements("custom", "example")
57
assert len(elements) == 2
58
assert elements[0].text == "Test1"
0 commit comments