glhd / laravel-dusk-browserstack by inxilpro

Easily run Laravel Dusk tests on BrowserStack.
7,491
6
3
Package Data
Maintainer Username: inxilpro
Package Create Date: 2017-08-30
Package Last Update: 2020-05-04
Language: PHP
License: MIT
Last Refreshed: 2024-04-18 15:07:53
Package Statistics
Total Downloads: 7,491
Monthly Downloads: 3
Daily Downloads: 0
Total Stars: 6
Total Watchers: 3
Total Forks: 3
Total Open Issues: 1

Run Laravel Dusk tests in BrowserStack

Installation

First, install the composer package:

composer require galahad/dusk-browserstack

Usage

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 */);
	}
}

Options

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 username
  • key: [required] your BrowserStack API key
  • local_config: array of options to pass to BrowserStackLocal
  • capabilities: array of default capabilities to request (defaults to Chrome on any available platform)

Advanced

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.

Changelog

1.1.0

  • Silently skips running BrowserStack Local if something is listening on port 45691

1.0.2

  • Better default BrowserStack logfile

1.0.1

  • Loads configuration from services.browserstack by default for less boilerplate.

1.0.0

  • First release