use warnings; use strict; use lib 't/lib'; use Test::More import => [qw(done_testing is ok diag todo_skip)]; use Selenium::Remote::Driver::FirefoxExtensions; use Selenium::Collection::Common; use Selenium::Collection::Functions; my ($port) = @_; my $d = Selenium::Collection::Functions::create_driver($port); my $c = Selenium::Collection::Common->new( driver => $d ); my $customerid = ("id" . int(rand(100000)) . "ok"); my $domainstring = ("domain" . int(rand(100000)) . ".example.org"); my $emailstring = ("test" . int(rand(10000)) . "\@example.org"); my $username = ("demo" . int(rand(10000)) . "name"); my $bsetname = ("test" . int(10000) . "bset"); my $destinationname = ("test" . int(10000) . "dset"); my $sourcename = ("test" . int(10000) . "source"); my $setname = ("test" . int(rand(10000)) . "set"); my $profilename = ("test" . int(rand(10000)) . "profile"); my $contactmail = ("contact" . int(rand(100000)) . '@test.org'); my $resellername = ("reseller" . int(rand(100000)) . "test"); my $contractid = ("contract" . int(rand(100000)) . "test"); my $billingname = ("billing" . int(rand(100000)) . "test"); my $run_ok = 0; $c->login_ok(); $c->create_domain($domainstring); $c->create_reseller_contract($contractid); $c->create_reseller($resellername, $contractid); $c->create_contact($contactmail, $resellername); $c->create_billing_profile($billingname, $resellername); $c->create_customer($customerid, $contactmail, $billingname); diag("Open Details for our just created Customer"); $d->fill_element('#Customer_table_filter input', 'css', 'thisshouldnotexist'); ok($d->find_element_by_css('#Customer_table tr > td.dataTables_empty', 'css'), 'Garbage test not found'); $d->fill_element('#Customer_table_filter input', 'css', $customerid); ok($d->wait_for_text('//*[@id="Customer_table"]/tbody/tr[1]/td[2]', $customerid), 'Customer found'); $d->move_and_click('//*[@id="Customer_table"]/tbody/tr[1]//td//div//a[contains(text(),"Details")]', 'xpath', '//*[@id="Customer_table_filter"]//input'); diag("Trying to add a empty Subscriber"); $d->find_element('//*[@id="customer_details"]//div//a[contains(text(), "Subscribers")]')->click(); $d->scroll_to_element($d->find_element('//*[@id="customer_details"]//div//a[contains(text(), "Subscribers")]')); $d->find_element('Create Subscriber', 'link_text')->click(); $d->unselect_if_selected('//*[@id="domainidtable"]/tbody/tr[1]/td[4]/input'); $d->find_element('//*[@id="save"]')->click(); diag("Check Error Messages"); ok($d->find_element_by_xpath('//form//div//span[contains(text(), "Domain field is required")]')); ok($d->find_element_by_xpath('//form//div//span[contains(text(), "SIP Username field is required")]')); ok($d->find_element_by_xpath('//form//div//span[contains(text(), "SIP Password field is required")]')); diag('Enter necessary information'); $d->fill_element('//*[@id="domainidtable_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#domainidtable tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="domainidtable_filter"]/label/input', 'xpath', $domainstring); ok($d->wait_for_text('//*[@id="domainidtable"]/tbody/tr[1]/td[3]', $domainstring), 'Domain found'); $d->select_if_unselected('//*[@id="domainidtable"]/tbody/tr[1]/td[4]/input'); $d->find_element('//*[@id="e164.cc"]')->send_keys('43'); $d->find_element('//*[@id="e164.ac"]')->send_keys('99'); $d->find_element('//*[@id="e164.sn"]')->send_keys(int(rand(99999999))); $d->find_element('//*[@id="email"]')->send_keys($emailstring); $d->find_element('//*[@id="webusername"]')->send_keys($username); $d->find_element('//*[@id="webpassword"]')->send_keys('testing1234'); #workaround for misclicking on ok button $d->find_element('//*[@id="gen_password"]')->click(); $d->find_element('//*[@id="username"]')->send_keys($username); $d->find_element('//*[@id="password"]')->send_keys('testing1234'); #using normal pwd, cant easily seperate both generate buttons $d->find_element('//*[@id="save"]')->click(); diag('Trying to find Subscriber'); $d->fill_element('//*[@id="subscribers_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscribers_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscribers_table_filter"]/label/input', 'xpath', $username); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Subscriber successfully created")]'), "Label 'Subscriber successfully created' was shown"); ok($d->wait_for_text('//*[@id="subscribers_table"]/tbody/tr/td[2]', $username), 'Subscriber was found'); diag('Go to Subscriber Profiles page'); $d->find_element('//*[@id="main-nav"]//*[contains(text(),"Settings")]')->click(); $d->find_element("Subscriber Profiles", 'link_text')->click(); diag('Trying to create a empty Subscriber profile set'); $d->find_element("Create Subscriber Profile Set", 'link_text')->click(); $d->unselect_if_selected('//*[@id="reselleridtable"]/tbody/tr[1]/td[5]/input', 'xpath'); $d->find_element('//*[@id="save"]')->click(); diag("Check Error Messages"); ok($d->find_element_by_xpath('//form//div//span[contains(text(), "Reseller field is required")]')); ok($d->find_element_by_xpath('//form//div//span[contains(text(), "Name field is required")]')); ok($d->find_element_by_xpath('//form//div//span[contains(text(), "Description field is required")]')); diag('Enter profile set information'); $d->fill_element('//*[@id="reselleridtable_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#reselleridtable tr > td.dataTables_empty', 'css'), 'Garbage text was not found'); $d->fill_element('//*[@id="reselleridtable_filter"]/label/input', 'xpath', $resellername); ok($d->wait_for_text('//*[@id="reselleridtable"]/tbody/tr[1]/td[2]', $resellername), "Reseller found"); $d->select_if_unselected('//*[@id="reselleridtable"]/tbody/tr[1]/td[5]/input', 'xpath'); $d->fill_element('//*[@id="name"]', 'xpath', $setname); $d->fill_element('//*[@id="description"]', 'xpath', 'This is a description. It describes things'); $d->find_element('//*[@id="save"]')->click(); diag('Trying to find Subscriber profile set'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_profile_sets_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', $setname); diag('Check details'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Subscriber profile set successfully created")]'), "Label 'Subscriber profile set successfully created' was shown"); ok($d->wait_for_text('//*[@id="subscriber_profile_sets_table"]/tbody/tr/td[3]', $setname), 'Name is correct'); ok($d->wait_for_text('//*[@id="subscriber_profile_sets_table"]/tbody/tr/td[4]', 'This is a description. It describes things'), 'Description is correct'); ok($d->find_element_by_xpath('//*[@id="subscriber_profile_sets_table"]//tr//td[contains(text(), "' . $resellername .'")]'), 'Reseller is correct'); diag('Edit Subscriber Profile set'); $setname = ("test" . int(rand(10000)) . "set"); $d->move_and_click('//*[@id="subscriber_profile_sets_table"]/tbody/tr[1]/td/div/a[contains(text(), "Edit")]', 'xpath', '//*[@id="subscriber_profile_sets_table_filter"]/label/input'); $d->fill_element('//*[@id="name"]', 'xpath', $setname); $d->fill_element('//*[@id="description"]', 'xpath', 'Very Good description here'); $d->find_element('//*[@id="save"]')->click(); diag('Trying to find Subscriber profile set'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_profile_sets_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', $setname); diag('Check details'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Subscriber profile set successfully updated")]'), "Label 'Subscriber profile set successfully updated' was shown"); ok($d->wait_for_text('//*[@id="subscriber_profile_sets_table"]/tbody/tr/td[3]', $setname), 'Name is correct'); ok($d->wait_for_text('//*[@id="subscriber_profile_sets_table"]/tbody/tr/td[4]', 'Very Good description here'), 'Description is correct'); ok($d->find_element_by_xpath('//*[@id="subscriber_profile_sets_table"]//tr//td[contains(text(), "' . $resellername .'")]'), 'Reseller is correct'); diag('Enter "Profiles" menu'); $d->move_and_click('//*[@id="subscriber_profile_sets_table"]/tbody/tr[1]/td/div/a[contains(text(), "Profiles")]', 'xpath', '//*[@id="subscriber_profile_sets_table_filter"]/label/input'); diag('Trying to create a empty Subscriber Profile'); $d->find_element("Create Subscriber Profile", 'link_text')->click(); $d->find_element('//*[@id="save"]')->click(); diag("Check Error Messages"); ok($d->find_element_by_xpath('//form//div//span[contains(text(), "Name field is required")]')); ok($d->find_element_by_xpath('//form//div//span[contains(text(), "Description field is required")]')); diag('Enter profile information'); $d->fill_element('//*[@id="name"]', 'xpath', $profilename); $d->fill_element('//*[@id="description"]', 'xpath', 'This is a description. It describes things'); $d->scroll_to_element($d->find_element('//*[@id="attribute.ncos"]')); $d->select_if_unselected('//*[@id="attribute.ncos"]'); $d->find_element('//*[@id="save"]')->click(); diag('Search for Profile'); $d->fill_element('//*[@id="subscriber_profile_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_profile_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_profile_table_filter"]/label/input', 'xpath', $profilename); diag('Check profile details'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Subscriber profile successfully created")]'), "Label 'Subscriber profile successfully created' was shown"); ok($d->wait_for_text('//*[@id="subscriber_profile_table"]/tbody/tr/td[3]', $profilename), 'Name is correct'); ok($d->wait_for_text('//*[@id="subscriber_profile_table"]/tbody/tr/td[4]', 'This is a description. It describes things'), 'Description is correct'); ok($d->wait_for_text('//*[@id="subscriber_profile_table"]/tbody/tr/td[2]', $setname), 'Profile Set is correct'); diag('Edit Subscriber Profile'); $profilename = ("test" . int(rand(10000)) . "profile"); $d->move_and_click('//*[@id="subscriber_profile_table"]//tr[1]//td//a[contains(text(), "Edit")]', 'xpath', '//*[@id="subscriber_profile_table_filter"]//input'); $d->fill_element('//*[@id="name"]', 'xpath', $profilename); $d->fill_element('//*[@id="description"]', 'xpath', 'Very very useful description'); $d->find_element('//*[@id="save"]')->click(); diag('Search for Profile'); $d->fill_element('//*[@id="subscriber_profile_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_profile_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_profile_table_filter"]/label/input', 'xpath', $profilename); diag('Check profile details'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Subscriber profile successfully updated")]'), "Label 'Subscriber profile successfully updated' was shown"); ok($d->wait_for_text('//*[@id="subscriber_profile_table"]/tbody/tr/td[3]', $profilename), 'Name is correct'); ok($d->wait_for_text('//*[@id="subscriber_profile_table"]/tbody/tr/td[4]', 'Very very useful description'), 'Description is correct'); ok($d->wait_for_text('//*[@id="subscriber_profile_table"]/tbody/tr/td[2]', $setname), 'Profile Set is correct'); diag('Go to Subscribers page'); $d->find_element('//*[@id="main-nav"]//*[contains(text(),"Settings")]')->click(); $d->find_element("Subscribers", 'link_text')->click(); diag('Checking Subscriber Details'); $d->fill_element('//*[@id="subscriber_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_table_filter"]/label/input', 'xpath', $username); ok($d->wait_for_text('//*[@id="subscriber_table"]/tbody/tr/td[3]', $contactmail), 'Contact Email is correct'); ok($d->wait_for_text('//*[@id="subscriber_table"]/tbody/tr/td[4]', $username), 'Subscriber name is correct'); ok($d->wait_for_text('//*[@id="subscriber_table"]/tbody/tr/td[5]', $domainstring), 'Domain name is correct'); diag('Go to Subscriber details'); $d->move_and_click('//*[@id="subscriber_table"]/tbody/tr[1]/td/div/a[contains(text(), "Details")]', 'xpath', '//*[@id="subscriber_table_filter"]//input'); diag('Edit master data'); $d->find_element('//*[@id="subscriber_data"]//div//a[contains(text(), "Master Data")]')->click(); $d->find_element("Edit", 'link_text')->click(); diag('Add Subscriber to profile'); $d->scroll_to_element($d->find_element('//*[@id="profile_setidtable_filter"]/label/input')); $d->fill_element('//*[@id="profile_setidtable_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#profile_setidtable tr > td.dataTables_empty'), 'Garbage Text was not found'); $d->fill_element('//*[@id="profile_setidtable_filter"]/label/input', 'xpath', $setname); ok($d->wait_for_text('//*[@id="profile_setidtable"]/tbody/tr/td[3]', $setname), 'Subscriber Profile was found'); $d->select_if_unselected('//*[@id="profile_setidtable"]/tbody/tr/td[5]'); $d->find_element('//*[@id="save"]')->click(); diag('Check if change was applied'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Successfully updated subscriber")]'), "Label 'Successfully updated subscriber' was shown"); ok($d->find_element_by_xpath('//*[@id="subscribers_table"]//tr/td[contains(text(), "Subscriber Profile Set")]/../td[contains(text(), "'. $setname .'")]')); ok($d->find_element_by_xpath('//*[@id="subscribers_table"]//tr/td[contains(text(), "Subscriber Profile")]/../td[contains(text(), "'. $profilename .'")]')); diag('Go to Subscriber preferences'); $d->find_element("Preferences", 'link_text')->click(); diag('Trying to change subscriber IVR language'); $d->find_element("Internals", 'link_text')->click(); $d->scroll_to_element($d->find_element('//table//tr/td[contains(text(), "language")]')); $d->move_and_click('//table//tr/td[contains(text(), "language")]/..//td//a[contains(text(), "Edit")]', 'xpath'); diag('Change language to German'); $d->find_element('//*[@id="language"]/option[contains(text(), "German")]')->click(); $d->find_element('//*[@id="save"]')->click(); diag('Check if language has been applied'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Preference language successfully updated")]'), "Label 'Preference language successfully updated' was shown"); $d->scroll_to_element($d->find_element('//*[@id="preference_groups"]//div//a[contains(text(),"Internals")]')); ok($d->find_element_by_xpath('//table//tr/td[contains(text(), "language")]/../td/select/option[contains(text(), "German") and @selected="selected"]'), '"German" has been selected'); diag('Trying to enable call recording'); $d->find_element("NAT and Media Flow Control", 'link_text')->click(); $d->scroll_to_element($d->find_element('//table//tr/td[contains(text(), "record_call")]')); $d->move_and_click('//table//tr/td[contains(text(), "record_call")]/..//td//a[contains(text(), "Edit")]', 'xpath'); diag('Enable call recording'); $d->select_if_unselected('//*[@id="record_call"]'); $d->find_element('//*[@id="save"]')->click(); diag('Check if call recording was enabled'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Preference record_call successfully updated")]'), "Label 'Preference record_call successfully updated' was shown"); ok($d->find_element_by_xpath('//table//tr/td[contains(text(), "record_call")]/../td//input[@checked="checked"]'), "Call recording was enabled"); diag('Trying to add a simple call forward'); $d->scroll_to_element($d->find_element("Call Forwards", 'link_text')); $d->find_element("Call Forwards", 'link_text')->click(); $d->move_and_click('//*[@id="preferences_table_cf"]/tbody/tr/td[contains(text(), "Unconditional")]/../td/div/a[contains(text(), "Edit")]', 'xpath'); $d->fill_element('//*[@id="destination.uri.destination"]', 'xpath', '43123456789'); $d->find_element('//*[@id="cf_actions.advanced"]')->click(); diag('Add a new Source set'); $d->find_element('//*[@id="cf_actions.edit_source_sets"]')->click(); $d->find_element('Create New', 'link_text')->click(); $d->fill_element('//*[@id="name"]', 'xpath', $sourcename); $d->fill_element('//*[@id="source.0.source"]', 'xpath', '43*'); diag('Adding another source'); $d->find_element('//*[@id="source_add"]')->click(); ok($d->fill_element('//*[@id="source.1.source"]', 'xpath', '494331337'), "New Source input was created"); $d->find_element('//*[@id="save"]')->click(); diag('Check Source set details'); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $sourcename . '")]'), "Name is correct"); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $sourcename . '")]/../td[contains(text(), "whitelist")]'), "Mode is correct"); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $sourcename . '")]/../td[contains(text(), "43*")]'), "Number 1 is correct"); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $sourcename . '")]/../td[text()[contains(., "494331337")]]'), "Number 2 is correct"); $d->find_element('//*[@id="mod_close"]')->click(); diag('Add a new B-Number set'); $d->find_element('//*[@id="cf_actions.edit_bnumber_sets"]')->click(); $d->find_element('Create New', 'link_text')->click(); $d->fill_element('//*[@id="name"]', 'xpath', $bsetname); $d->fill_element('//*[@id="bnumbers.0.number"]', 'xpath', '1234567890'); $d->find_element('//*[@id="save"]')->click(); diag('Check B-Number set details'); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $bsetname . '")]'), "Name is correct"); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $bsetname . '")]/../td[contains(text(), "1234567890")]'), "Number is correct"); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $bsetname . '")]/../td[contains(text(), "whitelist")]'), "Mode is correct"); $d->find_element('//*[@id="mod_close"]')->click(); diag('Add a new Destination set'); $d->find_element('//*[@id="cf_actions.edit_destination_sets"]')->click(); $d->find_element('Create New', 'link_text')->click(); $d->fill_element('//*[@id="name"]', 'xpath', $destinationname); $d->fill_element('//*[@id="destination.0.uri.destination"]', 'xpath', '1234567890'); $d->find_element('//*[@id="save"]')->click(); diag('Check Destination set details'); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $destinationname . '")]'), "Name is correct"); ok($d->find_element_by_xpath('//*[@id="mod_edit"]//table//tr/td[contains(text(), "' . $destinationname . '")]/../td[contains(text(), "1234567890")]'), "Number is correct"); $d->find_element('//*[@id="mod_close"]')->click(); diag('Use new Sets'); $d->find_element('//*[@id="callforward_controls_add"]')->click(); $d->find_element('//*[@id="active_callforward.0.source_set"]/option[contains(text(), "' . $sourcename . '")]')->click(); ok($d->find_element_by_xpath('//select//option[contains(text(), "' . $sourcename . '")]')->click(), "Source set has been found"); ok($d->find_element_by_xpath('//select//option[contains(text(), "' . $destinationname . '")]')->click(), "Destination Set has been found"); ok($d->find_element_by_xpath('//select//option[contains(text(), "' . $bsetname . '")]')->click(), "B-Set has been found"); diag('Save'); $d->find_element('//*[@id="cf_actions.save"]')->click(); diag('Check if call-forward has been applied'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Successfully saved Call Forward")]'), "Label 'Successfully saved Call Forward' was shown"); ok($d->find_element_by_xpath('//*[@id="preferences_table_cf"]/tbody/tr[1]/td[contains(text(), ' . $bsetname . ')]'), 'B-Set was selected'); ok($d->find_element_by_xpath('//*[@id="preferences_table_cf"]/tbody/tr[1]/td[contains(text(), ' . $destinationname . ')]'), 'Destination set was selected'); diag('Trying to add call blockings'); $d->find_element("Call Blockings", 'link_text')->click(); $d->scroll_to_element($d->find_element("Call Blockings", 'link_text')); diag('Edit block_in_mode'); $d->move_and_click('//table//tr/td[contains(text(), "block_in_mode")]/../td//a[contains(text(), "Edit")]', 'xpath', '//*[@id="preference_groups"]//div//a[contains(text(), "Call Blockings")]'); $d->find_element('//*[@id="block_in_mode"]')->click(); $d->find_element('//*[@id="save"]')->click(); diag('Check if value was set'); $d->scroll_to_element($d->find_element("Call Blockings", 'link_text')); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Preference block_in_mode successfully updated")]'), "Label 'Preference block_in_mode successfully updated' was shown"); ok($d->find_element_by_xpath('//table//tr/td[contains(text(), "block_in_mode")]/../td/input[@checked="checked"]'), "Setting is correct"); diag('Edit block_in_list'); $d->move_and_click('//table//tr/td[contains(text(), "block_in_list")]/../td//a[contains(text(), "Edit")]', 'xpath', '//*[@id="preference_groups"]//div//a[contains(text(), "Call Blockings")]'); $d->fill_element('//*[@id="block_in_list"]', 'xpath', '1337'); $d->find_element('//*[@id="add"]')->click(); $d->fill_element('//*[@id="block_in_list"]', 'xpath', '42'); $d->find_element('//*[@id="add"]')->click(); $d->find_element('//*[@id="mod_close"]')->click(); diag('Check if value was set'); $d->scroll_to_element($d->find_element("Call Blockings", 'link_text')); ok($d->find_element_by_xpath('//table//tr/td[contains(text(), "block_in_list")]/../td[contains(text(), "1337")]'), "Number 1 is correct"); ok($d->find_element_by_xpath('//table//tr/td[contains(text(), "block_in_list")]/../td[text()[contains(., "42")]]'), "Number 2 is correct"); diag('Disable Entry'); $d->move_and_click('//table//tr/td[contains(text(), "block_in_list")]/../td//a[contains(text(), "Edit")]', 'xpath', '//*[@id="preference_groups"]//div//a[contains(text(), "Call Blockings")]'); $d->find_element('//*[@id="mod_edit"]//div//input[@value="1337"]/../a[2]')->click(); $d->find_element('//*[@id="mod_close"]')->click(); diag('Check if Entry was disabled'); $d->scroll_to_element($d->find_element("Call Blockings", 'link_text')); ok($d->find_element_by_xpath('//table//tr/td[contains(text(), "block_in_list")]/../td/span[@class="ngcp-entry-disabled"]/../span[contains(text(), "1337")]'), "Entry was disabled"); diag('Edit block_in_clir'); $d->move_and_click('//table//tr/td[contains(text(), "block_in_clir")]/../td//a[contains(text(), "Edit")]', 'xpath', '//*[@id="preference_groups"]//div//a[contains(text(), "Call Blockings")]'); $d->find_element('//*[@id="block_in_clir"]')->click(); $d->find_element('//*[@id="save"]')->click(); diag('Check if value was set'); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Preference block_in_clir successfully updated")]'), "Label 'Preference block_in_clir successfully updated' was shown"); ok($d->find_element_by_xpath('//table//tr/td[contains(text(), "block_in_clir")]/../td/input[@checked="checked"]'), "Setting is correct"); diag('Go to Subscribers Page'); $d->find_element('//*[@id="main-nav"]//*[contains(text(),"Settings")]')->click(); $d->find_element("Subscribers", 'link_text')->click(); diag('Trying to NOT delete Subscriber'); $d->fill_element('//*[@id="subscriber_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_table_filter"]/label/input', 'xpath', $username); ok($d->wait_for_text('//*[@id="subscriber_table"]/tbody/tr/td[4]', $username), 'Subscriber was found'); $d->move_and_click('//*[@id="subscriber_table"]/tbody/tr[1]/td/div/a[contains(text(), "Terminate")]', 'xpath', '//*[@id="subscriber_table_filter"]//input'); $d->find_element('//*[@id="dataConfirmCancel"]')->click(); diag('Check if Subscriber is still here'); $d->fill_element('//*[@id="subscriber_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_table_filter"]/label/input', 'xpath', $username); ok($d->wait_for_text('//*[@id="subscriber_table"]/tbody/tr/td[4]', $username), 'Subscriber is still here'); diag('Trying to delete Subscriber'); $d->move_and_click('//*[@id="subscriber_table"]/tbody/tr[1]/td/div/a[contains(text(), "Terminate")]', 'xpath', '//*[@id="subscriber_table_filter"]//input'); $d->find_element('//*[@id="dataConfirmOK"]')->click(); diag('Check if Subscriber has been deleted'); $d->fill_element('//*[@id="subscriber_table_filter"]/label/input', 'xpath', $username); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Successfully terminated subscriber")]'), "Label 'Successfully terminated subscriber' was shown"); ok($d->find_element_by_css('#subscriber_table tr > td.dataTables_empty'), 'Table is empty'); diag('Go to Subscriber Profiles page'); $d->find_element('//*[@id="main-nav"]//*[contains(text(),"Settings")]')->click(); $d->find_element("Subscriber Profiles", 'link_text')->click(); diag('Trying to NOT Delete Subscriber Profile Set'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_profile_sets_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', $setname); ok($d->wait_for_text('//*[@id="subscriber_profile_sets_table"]/tbody/tr/td[3]', $setname), 'Profile Set was found'); $d->move_and_click('//*[@id="subscriber_profile_sets_table"]/tbody/tr[1]/td/div/a[contains(text(), "Delete")]', 'xpath', '//*[@id="subscriber_profile_sets_table_filter"]/label/input'); $d->find_element('//*[@id="dataConfirmCancel"]')->click(); diag('Check if Subscriber Profile Sethas been deleted'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', 'thisshouldnotexist'); ok($d->find_element_by_css('#subscriber_profile_sets_table tr > td.dataTables_empty'), 'Table is empty'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', $setname); ok($d->wait_for_text('//*[@id="subscriber_profile_sets_table"]/tbody/tr/td[3]', $setname), 'Profile Set is still here'); diag('Trying to Delete Subscriber Profile Set'); $d->move_and_click('//*[@id="subscriber_profile_sets_table"]/tbody/tr[1]/td/div/a[contains(text(), "Delete")]', 'xpath', '//*[@id="subscriber_profile_sets_table_filter"]/label/input'); $d->find_element('//*[@id="dataConfirmOK"]')->click(); diag('Check if Subscriber Profile Set has been deleted'); $d->fill_element('//*[@id="subscriber_profile_sets_table_filter"]/label/input', 'xpath', $setname); ok($d->find_element_by_xpath('//*[@id="content"]//div[contains(text(), "Subscriber profile set successfully deleted")]'), "Label 'Subscriber profile set successfully deleted' was shown"); ok($d->find_element_by_css('#subscriber_profile_sets_table tr > td.dataTables_empty'), 'Table is empty'); $c->delete_customer($customerid); $c->delete_reseller_contract($contractid); $c->delete_reseller($resellername); $c->delete_contact($contactmail); $c->delete_billing_profile($billingname); $c->delete_domain($domainstring); diag("This test run was successfull"); $run_ok = 1; END { if(!$run_ok) { $c->crash_handler("/results/crash_subscriber.png"); } done_testing; }