pagantis/selenium-form-utils

Pagantis PHP Library. Selenium helper to end a test purchase. Helper to test the payment validation and redirection

v3.0.3 2020-03-16 12:19 UTC

This package is auto-updated.

Last update: 2024-04-11 17:24:50 UTC


README

CircleCI: CircleCI

Latest Stable Version composer.lock Scrutinizer Code Quality

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.

How to use

Install the library by:

  • Downloading it from here

  • Using Composer:

composer require pagantis/selenium-form-utils

Finally, be sure to include the autoloader:

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.

// 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

SeleniumHelper::cancelForm($this->webDriver);

To Develop and improve the library:

after doing the modifications please run the precised testing

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.