Repair error in test_A Bulk_operation tests

This commit is contained in:
cesar991 2016-11-14 12:53:59 +01:00
parent 789fde7eb1
commit fb63106130
1 changed files with 2 additions and 1 deletions

View File

@ -52,7 +52,8 @@ class Bulk_operations(PandoraWebDriverTestCase):
delete_agent(driver,[agent_name_1,agent_name_2])
self.assertRegexpMatches(self.close_alert_and_get_its_text(), r"^Are you sure[\s\S]$")
self.assertEqual(self.driver.find_element_by_xpath('//div[@id="main"]//td[contains(.,"Successfully deleted (2)")]').text,"Successfully deleted (2)")
element = driver.find_element_by_xpath('//td[contains(.,"uccessfully")]')
self.assertIsInstance(element,WebElement)
def test_B_edit_agents_group_bulk_operations(self):