exozet/behat-utils

This package is abandoned and no longer maintained. No replacement package was suggested.

The `exozet/behat-utils` provides some traits for easier api testing with behat and mink.

0.8.1 2019-02-20 12:18 UTC

This package is auto-updated.

Last update: 2024-02-20 23:33:03 UTC


README

Build Status

The exozet/behat-utils provide some traits for easier testing of websites and web services using Behat and Mink.

Usage

$ composer require exozet/behat-utils

and add

use \Exozet\Behat\Utils\Base\JsonApiSteps;

to your context, like this:

class ServiceContext extends \Behat\MinkExtension\Context\MinkContext
{
    use \Exozet\Behat\Utils\Base\JsonApiSteps;
}

That's it!

Traits

JsonApiSteps

The JsonApiSteps are helpful for testing JSON APIs.

WebsiteInteractionSteps

The WebsiteInteractionSteps simplify DOM-based interactions with websites.

SpinnedMinkSteps

The SpinnedMinkSteps allow calling default MinkContext steps while allowing a specified timeout.

ConditionSteps

The ConditionSteps offer steps that only continue the test execution under specific conditions, marking the tests as "Pending" otherwise.

HelpUtils

The HelpUtils offer helper functions that can be useful for defining own steps.

Development of behat-utils

If you want to develop on those utils, please use chromedriver and run it like this:

$ chromedriver --whitelisted-ips='*'

Then use the embedded docker-compose.yml and run a php-cli like this:

$ docker-compose run --rm php-cli
www-data $ bash setup-dev.sh 
www-data $ vendor/bin/behat -p local
www-data $ ./vendor/bin/phpunit --bootstrap vendor/autoload.php --testdox tests

LICENSE

The behat-utils is copyright by Exozet (http://exozet.com) and licensed under the terms of MIT License.