Adapted tests to new translations

This commit is contained in:
axl89 2016-09-06 14:33:54 +02:00
parent 33db6c638d
commit 13eb5c6305
2 changed files with 4 additions and 4 deletions

View File

@ -105,7 +105,7 @@ class ACLReports(PandoraWebDriverTestCase):
self.login(user=user_name,passwd=user_name)
#Check that the report is visible
click_menu_element(driver,"Custom reporting")
click_menu_element(driver,"Custom reports")
driver.find_element_by_id('text-search').clear()
driver.find_element_by_id('text-search').send_keys(report_name_A)
driver.find_element_by_id('submit-search_submit').click()
@ -113,7 +113,7 @@ class ACLReports(PandoraWebDriverTestCase):
#Check that the report is not visible
click_menu_element(driver,"Custom reporting")
click_menu_element(driver,"Custom reports")
driver.find_element_by_id('text-search').clear()
driver.find_element_by_id('text-search').send_keys(report_name_B)
driver.find_element_by_id('submit-search_submit').click()

View File

@ -9,7 +9,7 @@ import random, time
import string
def create_report(driver,nombre,group_name,description=None):
click_menu_element(driver,"Custom reporting")
click_menu_element(driver,"Custom reports")
driver.find_element_by_id("submit-create").click()
driver.find_element_by_id("text-name").clear()
driver.find_element_by_id("text-name").send_keys(nombre)
@ -26,7 +26,7 @@ def create_report(driver,nombre,group_name,description=None):
driver.find_element_by_id("submit-add").click()
def delete_report(driver,report_name):
click_menu_element(driver,"Custom reporting")
click_menu_element(driver,"Custom reports")
driver.find_element_by_id('text-search').clear()
driver.find_element_by_id('text-search').send_keys(report_name)
driver.find_element_by_id('submit-search_submit').click()