Merge branch 'pandora_6.0' of github.com:pandorafms/pandorafms into pandora_6.0

This commit is contained in:
cesar991 2016-07-14 16:30:37 +02:00
commit a4247adee6
1 changed files with 5 additions and 6 deletions

View File

@ -45,24 +45,23 @@ class PAN8(PandoraWebDriverTestCase):
detect_and_pass_all_wizards(driver)
search_agent(driver,"PAN_8")
time.sleep(3)
time.sleep(6)
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))
time.sleep(3)
try:
#The user should NOT be able to see the module without tag
self.assertEqual("Without tag" in driver.page_source,False)
except AssertionError as e:
self.verificationErrors.append(str(e))
time.sleep(3)
if __name__ == "__main__":
unittest.main()