Selenium Form Utils
CircleCI:
, (*1)
, (*2)
Selenium Form Utils will help you when developing integration test of Pagantis. The utils will go pass Pagantis form to ensure you can test the Notification and the Redirection.
Be sure that KO and OK controllers work. You can automate your testing using travis-ci or circle-ci., (*3)
How to use
Install the library by:, (*4)
composer require pagantis/selenium-form-utils
Finally, be sure to include the autoloader:, (*7)
require_once '/path/to/your-project/vendor/autoload.php';
Once the library is ready and inside the project the stub objects will available and
the ordersApiClient will also available., (*8)
// Once the webDriver of selenium is inside Pagantis form, basically:
// $webdriver->getCurrentUrl == 'form.pagantis.com/....'
// Then you can use this tool to finish the form:
SeleniumHelper::finishForm($this->webDriver);
//The method will end once the form is approved, so the current URL will be OK_URL of the order
//Optionally you can also send the mobilePhone if the user is returning
SeleniumHelper::finishForm($this->webDriver, '600123123');
You can also check the cancel action automated, (*9)
SeleniumHelper::cancelForm($this->webDriver);
To Develop and improve the library:
after doing the modifications please run the precised testing, (*10)
docker-compose up -d
docker-compose exec php php-7.1 vendor/bin/phpunit
Help us to improve
We are happy to accept suggestions or pull requests. If you are willing to help us develop better software
please create a pull request here following the PSR-2 code style and we will use reviewable to check
the code and if al test pass and no issues are detected by SensioLab Insights you could will be ready
to merge., (*11)