From 13f91afe1c9f5b9995d0d788b69d300316eca4a2 Mon Sep 17 00:00:00 2001 From: cesar991 Date: Wed, 27 Jul 2016 13:34:11 +0200 Subject: [PATCH] Repair error in create_planned_downtime function --- tests/console/include/planned_downtime_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/console/include/planned_downtime_functions.py b/tests/console/include/planned_downtime_functions.py index d04481ff6d..63bab8fd74 100644 --- a/tests/console/include/planned_downtime_functions.py +++ b/tests/console/include/planned_downtime_functions.py @@ -74,7 +74,7 @@ def create_planned_downtime(driver,name,group,type_planned,description=None,exec if list_agent != None: for agent in list_agent: - Select(driver.find_element_by_id("id_agents")).select_by_visible_text("PAN3_agent") + Select(driver.find_element_by_id("id_agents")).select_by_visible_text(agent) alert = driver.switch_to_alert() alert.accept() driver.find_element_by_id("submit-add_item").click()