First, install the composer package:
composer require galahad/dusk-browserstack
Update your DuskTestCase:
<?php
namespace Tests;
use Galahad\BrowserStack\SupportsBrowserStack;
abstract class DuskTestCase extends BaseTestCase
{
// Add this:
use SupportsBrowserStack;
public static function prepare()
{
// This is no longer needed:
// static::startChromeDriver();
}
protected function driver()
{
// Set up the browser stack driver as needed
return $this->createBrowserStackDriver(/* $config */);
}
}
Set these in the driver()
call or in the services.browserstack
config. The key
option
can be omitted if you have a BROWSERSTACK_ACCESS_KEY
environmental variable set.
username
: [required] your BrowserStack usernamekey
: [required] your BrowserStack API keylocal_config
: array of options to pass to BrowserStackLocalcapabilities
: array of default capabilities to request (defaults to Chrome on any available platform)
It's possible to call setBrowserStackLocalConfig
or setBrowserStackCapabilities
within your tests,
and each new call to driver()
will use the updated settings. You can use this to run different tests
on different browsers/platforms/etc.
- Silently skips running BrowserStack Local if something is listening on port 45691
- Better default BrowserStack logfile
- Loads configuration from
services.browserstack
by default for less boilerplate.
- First release