appstract / laravel-dusk-opera
Run Dusk tests in Opera
Installs: 3 631
Dependents: 0
Suggesters: 0
Security: 0
Stars: 8
Watchers: 5
Forks: 1
Open Issues: 0
Requires
- php: >=5.6
This package is auto-updated.
Last update: 2024-10-27 07:04:28 UTC
README
This package allows you to use Opera Webdriver in Dusk, so you don't need Selenium to run Dusk tests in Opera.
This requires a recent version of Opera.
Installation
You can install the package via composer:
composer require appstract/laravel-dusk-opera
Usage
Add the SupportsOpera
trait to your DuskTestCase:
use Appstract\DuskDrivers\Opera\SupportsOpera; abstract class DuskTestCase extends BaseTestCase { use CreatesApplication, SupportsOpera; }
Now you can start the server in the prepare
method:
public static function prepare() { static::startOperaDriver(); }
Instruct Dusk to use Opera by changing DesiredCapabilities::chrome()
to DesiredCapabilities::opera()
in the Driver method:
protected function driver() { return RemoteWebDriver::create( 'http://localhost:9515', DesiredCapabilities::opera() ); }
Contributing
Contributions are welcome, thanks to y'all :)
About Appstract
Appstract is a small team from The Netherlands. We create (open source) tools for webdevelopment and write about related subjects on Medium. You can follow us on Twitter, buy us a beer or support us on Patreon.
License
The MIT License (MIT). Please see License File for more information.