Skip to content

Commit e641800

Browse files
authored
[8.x] Explicitly set chromedriver port. (#1124)
fixes #1123 fixes #1122 Before 128, ChromeDriver will use the default 9515 port, however this is no longer the case and would cause chromedriver to run on port 0. https://issues.chromium.org/issues/361370192 Signed-off-by: Mior Muhammad Zaki <[email protected]>
1 parent 4e76666 commit e641800

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/browser-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: php vendor/bin/testbench dusk:chrome-driver --detect
5252

5353
- name: Start Chrome Driver
54-
run: ./bin/chromedriver-linux &
54+
run: ./bin/chromedriver-linux --port=9515 &
5555

5656
- name: Run Laravel Server
5757
run: php vendor/bin/testbench serve --no-reload &

src/TestCase.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ protected function setUp(): void
4343
protected function driver()
4444
{
4545
return RemoteWebDriver::create(
46-
'http://localhost:9515', DesiredCapabilities::chrome()
46+
$_ENV['DUSK_DRIVER_URL'] ?? env('DUSK_DRIVER_URL') ?? 'http://localhost:9515',
47+
DesiredCapabilities::chrome()
4748
);
4849
}
4950

stubs/DuskTestCase.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ abstract class DuskTestCase extends BaseTestCase
2020
public static function prepare(): void
2121
{
2222
if (! static::runningInSail()) {
23-
static::startChromeDriver();
23+
static::startChromeDriver(['--port=9515']);
2424
}
2525
}
2626

0 commit comments

Comments
 (0)