From fdee65850c03097cc11e86f03416a20fc2b2d078 Mon Sep 17 00:00:00 2001 From: Nico Schedel Date: Wed, 26 Jul 2023 13:49:23 +0200 Subject: [PATCH] MT#57776 fix csc test preperation on jenkins side (again) Change-Id: Ic3387bb07f4126dc6e55b4daa01040f63f1c7dcc --- t/selenium/functions/Collections.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/t/selenium/functions/Collections.py b/t/selenium/functions/Collections.py index 5bc673bc..842df2f9 100644 --- a/t/selenium/functions/Collections.py +++ b/t/selenium/functions/Collections.py @@ -95,8 +95,9 @@ def create_subscriber(driver, customername, domainname): fill_element(driver, '//*[@id="Customer_table_filter"]//input', customername) WebDriverWait(driver, 10).until(EC.visibility_of_element_located((By.XPATH, '//*[@id="Customer_table"]//tr[1]//td[text()="%s"]' % customername))) click_js(driver, '//*[@id="Customer_table"]//tr[1]//td//a[contains(text(), "Details")]') - time.sleep(1) + time.sleep(2) driver.find_element(By.XPATH, '//a[@id="toggle-accordions"]').click() + time.sleep(1) scroll_to_element(driver, 'Subscribers') driver.find_element(By.LINK_TEXT, "Create Subscriber").click() WebDriverWait(driver, 10).until(EC.visibility_of_element_located((By.XPATH, '//*[@id="domainidtable_paginate"]/a[4]')))