Fixed PAN8 failing sometimes in the assert

This commit is contained in:
axl89 2016-07-14 11:21:38 +02:00
parent 01fc8df594
commit 15e4f6bb27

View File

@ -48,7 +48,9 @@ class PAN8(PandoraWebDriverTestCase):
try:
#The user should be able to see the module with Tag
module = driver.find_element_by_xpath('//td[contains(.,"With tag")]')
self.assertEqual("With tag" in driver.page_source,True)
except AssertionError as e:
self.verificationErrors.append(str(e))