Skip to content

Commit

Permalink
Removing invalid test for finding elements with compound css selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
AutomatedTester committed Sep 20, 2016
1 parent f9d3a7e commit 699d5f9
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,6 @@ def test_Finding_ASingle_Element_By_Compound_Class_Name_Should_Throw(self):
with pytest.raises(NoSuchElementException):
self.driver.find_element(By.CLASS_NAME, "a b")

@pytest.mark.ignore_phantomjs
def test_Finding_Multiple_Elements_By_Compound_Class_Name_Should_Throw(self):
self._load_page("xhtmlTest")
with pytest.raises(NoSuchElementException):
self.driver.find_elements(By.CLASS_NAME, "a b")

@pytest.mark.ignore_phantomjs
def test_Finding_ASingle_Element_By_Invalid_Class_Name_Should_Throw(self):
self._load_page("xhtmlTest")
Expand Down

0 comments on commit 699d5f9

Please sign in to comment.