-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,6 +90,16 @@ export const browsers: Browser[] = [ | |
versionRegex: /Microsoft Edge Dev (\S+)/m, | ||
binary: ['edge-dev', 'microsoft-edge-dev'], | ||
}, | ||
{ | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
flotwig
Author
Contributor
|
||
name: 'webkit', | ||
family: 'webkit', | ||
channel: 'dev', | ||
displayName: 'WebKit', | ||
// WebKitGTK 2.31.1 (r272495) | ||
versionRegex: /WebKitGTK (\S+)/m, | ||
module: 'playwright-webkit', | ||
getBinaryPath: (pw) => pw.webkit.executablePath(), | ||
}, | ||
] | ||
|
||
/** starts a found browser and opens URL if given one */ | ||
|
@flotwig, I am following your commits in
cy-webkit
branch and I see you added playwright-webkit. However, can you please help me figure out how to make cypress start this browser? I see when I go to launcher package and donode index.js
playwright-webkit gets started but does not work.