Skip to content

Commit e621c2c

Browse files
committed
passed locally
1 parent 06465dc commit e621c2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/test/selenium/webdriver/common/driver_element_finding_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ def test_should_be_able_to_identify_elements_by_class(driver, pages):
354354

355355
def test_should_be_able_to_find_an_element_by_xpath_with_multiple_attributes(driver, pages):
356356
pages.load("formPage.html")
357-
element = driver.find_element(By.XPATH, "/input[@type='email' and @id='email']")
357+
element = driver.find_element(By.XPATH, "//input[@type='submit' and @value='Click!']")
358358
assert element.tag_name.lower() == "input"
359359
assert element.get_attribute("value") == "Click!"
360360

0 commit comments

Comments
 (0)