Codeception Automated Testing
See our CodeCeption example repository for a simple example on how to run CodeCeption tests in parallel on TestingBot.
We start with a simple test:
Make sure you set these values in tests/acceptance.suite.yml
class_name: AcceptanceTester
env:
chrome:
modules:
enabled:
- WebDriver
config:
WebDriver:
url: 'https://www.google.com'
host: 'hub.testingbot.com'
port: 80
browser: chrome
capabilities:
'client_key': 'REPLACE_ME'
'client_secret': 'REPLACE_ME'
'platform' : 'Windows'
'name': 'Sample Codeception Tests'
firefox:
modules:
enabled:
- WebDriver
config:
WebDriver:
url: 'https://www.google.com'
host: 'hub.testingbot.com'
port: 80
browser: firefox
capabilities:
'client_key': 'REPLACE_ME'
'client_secret': 'REPLACE_ME'
'platform': LINUX
'name': 'Sample Codeception Tests'
Now we can run a basic example where we search for TestingBot on Google:
<?php
$I = new AcceptanceTester($scenario);
$I->wantTo('Search TestingBot on Google');
$I->amOnPage('/');
$I->see('Google');
$I->fillField('q', 'TestingBot');
$I->click('btnG');
$I->see('TestingBot');
?>
Additional settings can be found on the Codeception WebDriver Module page.
Specify Browsers & Devices
To let TestingBot know on which browser/platform/device you want to run your test on, you need to specify the browsername, version, OS and other optional options in the capabilities field.
To see how to do this, please select a combination of browser, version and platform in the drop-down menus below.
Mark tests as passed/failed
As TestingBot has no way to dermine whether your test passed or failed (it is determined by your business logic), we offer a way to send the test status back to TestingBot. This is useful if you want to see if a test succeeded or failed from the TestingBot member area.
We've created an extension for Codeception: testingbot/codeception-extension
By including this in your tests, Codeception will automatically send back test-meta data to TestingBot (test name, success/failure, ...)
Testing Internal Websites
We've built TestingBot Tunnel, to provide you with a secure way to run tests against your staged/internal webapps.
Please see our TestingBot Tunnel documentation for more information about this easy to use tunneling solution.") %>
The example below shows how to easily run a Codeception test with our Tunnel:
1. Download our tunnel and start the tunnel:
2. Adjust your test: instead of pointing to 'hub.testingbot.com/wd/hub'
like the example above - change it to point to your tunnel's IP address.
Assuming you run the tunnel on the same machine you run your tests, change to 'localhost:4445/wd/hub'
. localhost is the machine running the tunnel, 4445 is the default port of the tunnel.
This way your test will go securely through the tunnel to TestingBot and back. Edit the configuration in tests/acceptance.suite.yml
:
Run tests in Parallel
Parallel Testing means running the same test, or multiple tests, simultaneously. This greatly reduces your total testing time.
You can run the same tests on all different browser configurations or run different tests all on the same browser configuration.
TestingBot has a large grid of machines and browsers, which means you can use our service to do efficient parallel testing. It is one of the key features we provide to greatly cut down on your total testing time.
Please see CodeCeption Parallel Execution Docs for more information on how to run tests in parallel with Robo.
Queuing
Every plan we provide comes with a limit of parallel tests.
If you exceed the number of parallel tests assigned to your account, TestingBot will queue the additional tests (for up to 6 minutes) and run the tests as soon as slots become available.
Other PHP Framework examples
-
Behat
Behat is a BDD framework which runs on PHP.
Mink is used for its browser emulation and works nicely together with Behat. -
Codeception
Codeception is a BDD-styled PHP testing framework.
This testing framework offers good Selenium support. -
Laravel Dusk
Laravel Dusk provides an easy-to-use browser automation testing framework.
-
PHPUnit
PHPUnit is the most popular unit testing framework for PHP.
It comes with good Selenium WebDriver support and is easy to set up. -
SimpleTest
SimpleTest is a framework for unit testing, web site testing and mock objects for PHP.