You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
198 lines
8.5 KiB
198 lines
8.5 KiB
import os
|
|
import random
|
|
from functions import Functions
|
|
|
|
|
|
def login_csc(driver, name, pwd):
|
|
driver.get(os.environ['CATALYST_SERVER'])
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="csc-login-form"]//div//input[@type="text"]'
|
|
).send_keys(name)
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="csc-login-form"]//div//input[@type="password"]'
|
|
).send_keys(pwd)
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="csc-login"]//div//button').click()
|
|
|
|
|
|
def logout_csc(driver):
|
|
Functions.step(driver, '//*[@id="csc-header-toolbar"]/div[1]/button')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="csc-header-toolbar"]/div[1]/button').click()
|
|
driver.find_element_by_xpath(
|
|
'/html/body//div[contains(text(), "Logout")]').click()
|
|
|
|
|
|
def login_panel(driver):
|
|
driver.get(os.environ['CATALYST_SERVER'] + ":1443/logout")
|
|
driver.get(os.environ['CATALYST_SERVER'] + ":1443")
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="username"]').send_keys('administrator')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="password"]').send_keys('administrator')
|
|
driver.find_element_by_xpath('//*[@id="submit"]').click()
|
|
|
|
|
|
def logout_panel(driver):
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="top-nav"]/ul//a[contains(text(), "Logout")]').click()
|
|
|
|
|
|
def create_customer(driver, name=None):
|
|
if not name:
|
|
name = 'customer' + str(random.randint(1, 100000)) + 'test'
|
|
Functions.step(
|
|
driver, '//*[@id="main-nav"]//*[contains(text(),"Settings")]')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="main-nav"]//*[contains(text(),"Settings")]').click()
|
|
driver.find_element_by_link_text('Customers').click()
|
|
driver.find_element_by_link_text('Create Customer').click()
|
|
Functions.step(driver, '//*[@id="contactidtable"]//tr[1]//td/input')
|
|
Functions.scroll_to_element(
|
|
driver, '//*[@id="contactidtable"]//tr[1]//td/input')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="contactidtable"]//tr[1]//td/input').click()
|
|
try:
|
|
driver.implicitly_wait(2)
|
|
Functions.scroll_to_element(driver, '//*[@id="productidtable_filter"]/label/input')
|
|
Functions.fill_element(driver, '//*[@id="productidtable_filter"]/label/input', 'thisshouldnotexist')
|
|
driver.find_element_by_css_selector('#productidtable tr > td.dataTables_empty')
|
|
Functions.fill_element(driver, '//*[@id="productidtable_filter"]/label/input', 'Basic')
|
|
driver.find_element_by_xpath('//*[@id="productidtable"]//tr[1]//td/input').click()
|
|
driver.implicitly_wait(10)
|
|
except Exception as e:
|
|
driver.implicitly_wait(10)
|
|
del e
|
|
Functions.scroll_to_element(
|
|
driver, '//*[@id="billing_profileidtable"]//tr[1]//td/input')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="billing_profileidtable"]//tr[1]//td/input').click()
|
|
Functions.scroll_to_element(
|
|
driver, '//*[@id="external_id"]')
|
|
Functions.fill_element(
|
|
driver, '//*[@id="external_id"]', name)
|
|
driver.find_element_by_xpath('//*[@id="save"]').click()
|
|
return name
|
|
|
|
|
|
def delete_customer(driver, name):
|
|
Functions.step(
|
|
driver, '//*[@id="main-nav"]//*[contains(text(),"Settings")]')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="main-nav"]//*[contains(text(),"Settings")]').click()
|
|
driver.find_element_by_link_text('Customers').click()
|
|
Functions.fill_element(
|
|
driver, '//*[@id="Customer_table_filter"]//input',
|
|
'thisshouldnotexist')
|
|
driver.find_element_by_css_selector(
|
|
'#Customer_table tr > td.dataTables_empty')
|
|
Functions.fill_element(
|
|
driver, '//*[@id="Customer_table_filter"]//input', name)
|
|
Functions.step(
|
|
driver, '//*[@id="Customer_table"]//tr[1]//td[text()="%s"]' % name)
|
|
Functions.click_js(
|
|
driver, '//*[@id="Customer_table"]//tr[1]//td//a[contains(text(), "Terminate")]')
|
|
driver.find_element_by_xpath('//*[@id="dataConfirmOK"]').click()
|
|
|
|
|
|
def create_subscriber(driver, customername, domainname):
|
|
Functions.step(
|
|
driver, '//*[@id="main-nav"]//*[contains(text(),"Settings")]')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="main-nav"]//*[contains(text(),"Settings")]').click()
|
|
driver.find_element_by_link_text('Customers').click()
|
|
Functions.fill_element(
|
|
driver, '//*[@id="Customer_table_filter"]//input',
|
|
'thisshouldnotexist')
|
|
driver.find_element_by_css_selector(
|
|
'#Customer_table tr > td.dataTables_empty')
|
|
Functions.fill_element(
|
|
driver, '//*[@id="Customer_table_filter"]//input', customername)
|
|
Functions.step(
|
|
driver, '//*[@id="Customer_table"]//tr[1]//td[text()="%s"]' % customername)
|
|
Functions.click_js(
|
|
driver, '//*[@id="Customer_table"]//tr[1]//td//a[contains(text(), "Details")]')
|
|
driver.find_element_by_link_text('Expand Groups').click()
|
|
Functions.scroll_to_element(driver, 'Subscribers')
|
|
driver.find_element_by_link_text("Create Subscriber").click()
|
|
Functions.step(driver, '//*[@id="domainidtable_paginate"]/a[4]')
|
|
Functions.fill_element(
|
|
driver, '//*[@id="domainidtable_filter"]//input',
|
|
'thisshouldnotexist')
|
|
driver.find_element_by_css_selector(
|
|
'#domainidtable tr > td.dataTables_empty')
|
|
Functions.fill_element(
|
|
driver, '//*[@id="domainidtable_filter"]//input', domainname)
|
|
Functions.step(
|
|
driver, '//*[@id="domainidtable"]//tr[1]//td[text()="%s"]' % domainname)
|
|
Functions.click_js(
|
|
driver, '//*[@id="domainidtable"]/tbody/tr[1]/td[4]/input')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="webusername"]').send_keys('testuser')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="webpassword"]').send_keys('testpasswd')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="username"]').send_keys('testuser')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="password"]').send_keys('testpasswd')
|
|
driver.find_element_by_xpath('//*[@id="save"]').click()
|
|
|
|
|
|
def delete_subscriber(driver, customername):
|
|
Functions.step(
|
|
driver, '//*[@id="main-nav"]//*[contains(text(),"Settings")]')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="main-nav"]//*[contains(text(),"Settings")]').click()
|
|
driver.find_element_by_link_text('Customers').click()
|
|
Functions.fill_element(
|
|
driver, '//*[@id="Customer_table_filter"]//input',
|
|
'thisshouldnotexist')
|
|
driver.find_element_by_css_selector(
|
|
'#Customer_table tr > td.dataTables_empty')
|
|
Functions.fill_element(
|
|
driver, '//*[@id="Customer_table_filter"]//input', customername)
|
|
Functions.step(
|
|
driver, '//*[@id="Customer_table"]//tr[1]//td[text()="%s"]' % customername)
|
|
Functions.click_js(
|
|
driver, '//*[@id="Customer_table"]//tr[1]//td//a[contains(text(), "Details")]')
|
|
driver.find_element_by_link_text('Expand Groups').click()
|
|
Functions.scroll_to_element(driver, 'Subscribers')
|
|
Functions.click_js(
|
|
driver, '//*[@id="subscribers_table"]//tr[1]//td//a[contains(text(), "Terminate")]')
|
|
driver.find_element_by_xpath('//*[@id="dataConfirmOK"]').click()
|
|
|
|
|
|
def create_domain(driver, name=None):
|
|
if not name:
|
|
name = 'domain' + str(random.randint(1, 100000)) + 'test'
|
|
Functions.step(driver, '//*[@id="main-nav"]//*[contains(text(),"Settings")]')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="main-nav"]//*[contains(text(),"Settings")]').click()
|
|
driver.find_element_by_link_text('Domains').click()
|
|
driver.find_element_by_link_text('Create Domain').click()
|
|
Functions.step(driver, '//*[@id="reselleridtable"]//tr[1]/td[5]/input')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="reselleridtable"]//tr[1]/td[5]/input').click()
|
|
Functions.fill_element(driver, '//*[@id="domain"]', name)
|
|
driver.find_element_by_xpath('//*[@id="save"]').click()
|
|
return name
|
|
|
|
|
|
def delete_domain(driver, name):
|
|
Functions.step(driver, '//*[@id="main-nav"]//*[contains(text(),"Settings")]')
|
|
driver.find_element_by_xpath(
|
|
'//*[@id="main-nav"]//*[contains(text(),"Settings")]').click()
|
|
driver.find_element_by_link_text('Domains').click()
|
|
Functions.fill_element(
|
|
driver, '//*[@id="Domain_table_filter"]//input',
|
|
'thisshouldnotexist')
|
|
driver.find_element_by_css_selector(
|
|
'#Domain_table tr > td.dataTables_empty')
|
|
Functions.fill_element(
|
|
driver, '//*[@id="Domain_table_filter"]//input', name)
|
|
Functions.step(
|
|
driver, '//*[@id="Domain_table"]//tr[1]//td[text()="%s"]' % name)
|
|
Functions.click_js(
|
|
driver, '//*[@id="Domain_table"]//tr[1]//td//a[contains(text(), "Delete")]')
|
|
driver.find_element_by_xpath('//*[@id="dataConfirmOK"]').click()
|