Skip to content

Commit 5c36a6d

Browse files
Pratik Thakurfrancisf
authored andcommitted
updated browsers
1 parent f9274ee commit 5c36a6d

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
node_modules
1+
node_modules
2+
playwright-report

browserstack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const caps = {
1515
os: 'osx',
1616
os_version: 'catalina',
1717
name: 'My first playwright test',
18-
build: 'playwright-build-1',
19-
'browserstack.username': process.env.BROWSERSTACK_USERNAME || 'username',
18+
build: 'playwright-build',
19+
'browserstack.username': process.env.BROWSERSTACK_USERNAME || 'userName',
2020
'browserstack.accessKey': process.env.BROWSERSTACK_ACCESS_KEY || 'accesskey',
2121
'browserstack.local': process.env.BROWSERSTACK_LOCAL || false,
2222
'client.playwrightVersion': clientPlaywrightVersion,

playwright.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,20 +58,20 @@ const config = {
5858
{
5959
name: 'test1',
6060
use: {
61-
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:OSX Big Sur','test1') }
61+
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 11','test1') }
6262
},
6363
}
6464
,
6565
{
6666
name: 'test2',
6767
use: {
68-
connectOptions: { wsEndpoint: getCdpEndpoint('chrome@latest:Windows 10', 'test2') }
68+
connectOptions: { wsEndpoint: getCdpEndpoint('playwright-webkit@latest:OSX Ventura', 'test2') }
6969
},
7070
},
7171
{
7272
name: 'test3',
7373
use: {
74-
connectOptions: { wsEndpoint: getCdpEndpoint('edge@90:Windows 10', 'test3') }
74+
connectOptions: { wsEndpoint: getCdpEndpoint('playwright-firefox:Windows 11', 'test3') }
7575
},
7676
}
7777
// {

0 commit comments

Comments
 (0)