Skip to content

Commit

Permalink
remove test for find text with quotes
Browse files Browse the repository at this point in the history
added a issue to fix it: #457
  • Loading branch information
andrewsmedina committed Dec 12, 2015
1 parent 097dffe commit 41e70a8
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions tests/find_elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ def test_finding_by_text(self):
element = self.browser.find_by_text('Complex')
self.assertEqual(element.value, 'Complex')

def test_finding_by_text_quotation(self):
"should find elements by text"
element = self.browser.find_by_text('Quotation " marks')
self.assertEqual(element.value, 'Quotation " marks')

def test_finding_by_id(self):
"should find elements by id"
value = self.browser.find_by_id("firstheader").value
Expand Down Expand Up @@ -96,10 +91,6 @@ def test_finding_all_links_by_partial_text(self):
link = self.browser.find_link_by_partial_text('FOO')[0]
self.assertEqual('http://localhost:5000/foo', link['href'])

def test_finding_all_links_by_partial_text_complex_contents(self):
link = self.browser.find_link_by_partial_text('Complex Link')[0]
self.assertEqual('http://localhost:5000/foo', link['href'])

def test_finding_last_element_by_css(self):
"should find last element by css"
value = self.browser.find_by_css('h1').last.value
Expand Down

0 comments on commit 41e70a8

Please sign in to comment.