trex / codeception-selenium
A extension to start selenium server before acceptance test suite starts and stop it at the end of execution
Installs: 246
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/trex/codeception-selenium
Requires
- codeception/codeception: 2.2.9
This package is not auto-updated.
Last update: 2025-12-07 08:54:11 UTC
README
Acceptance test configuration example with recommendable extension PhpBuiltinServer
class_name: AcceptanceTester
extensions:
enabled:
- Codeception\Extension\PhpBuiltinServer
- trex\codeception\selenium\SeleniumExtension
config:
Codeception\Extension\PhpBuiltinServer:
hostname: localhost
port: 8000
autostart: true
documentRoot: web/
startDelay: 1
modules:
enabled:
- \Helper\Acceptance
- WebDriver:
url: "http://localhost:8000/index-test.php"
browser: chrome
capabilities:
chromeOptions:
args: ["--headless", "--disable-gpu", "--disable-extensions"]