Skip to content

Commit 699d5f9

Browse files
Removing invalid test for finding elements with compound css selectors
1 parent f9d3a7e commit 699d5f9

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -246,12 +246,6 @@ def test_Finding_ASingle_Element_By_Compound_Class_Name_Should_Throw(self):
246246
with pytest.raises(NoSuchElementException):
247247
self.driver.find_element(By.CLASS_NAME, "a b")
248248

249-
@pytest.mark.ignore_phantomjs
250-
def test_Finding_Multiple_Elements_By_Compound_Class_Name_Should_Throw(self):
251-
self._load_page("xhtmlTest")
252-
with pytest.raises(NoSuchElementException):
253-
self.driver.find_elements(By.CLASS_NAME, "a b")
254-
255249
@pytest.mark.ignore_phantomjs
256250
def test_Finding_ASingle_Element_By_Invalid_Class_Name_Should_Throw(self):
257251
self._load_page("xhtmlTest")

0 commit comments

Comments
 (0)