Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_finding_multiple_elements_by_id_with_space_should_return_empty_list(dri

def test_no_such_element_error(driver, pages):
pages.load("formPage.html")
msg = r"\/errors#no-such-element-exception"
msg = r"\/errors#nosuchelementexception"
with pytest.raises(NoSuchElementException, match=msg):
driver.find_element(By.ID, "non_Existent_Button")

Expand Down
Loading