You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/helpers/Playwright.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,6 +165,7 @@ Traces will be saved to `output/trace`
165
165
url:"http://localhost",
166
166
show:true// headless mode not supported for extensions
167
167
chromium: {
168
+
// Note: due to this would launch persistent context, so to avoid the error when running tests with run-workers a timestamp would be appended to the defined folder name. For instance: playwright-tmp_1692715649511
168
169
userDataDir:'/tmp/playwright-tmp', // necessary to launch the browser in normal mode instead of incognito,
Copy file name to clipboardExpand all lines: lib/helper/Playwright.js
+39-17Lines changed: 39 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -208,6 +208,7 @@ const config = {};
208
208
* url: "http://localhost",
209
209
* show: true // headless mode not supported for extensions
210
210
* chromium: {
211
+
* // Note: due to this would launch persistent context, so to avoid the error when running tests with run-workers a timestamp would be appended to the defined folder name. For instance: playwright-tmp_1692715649511
211
212
* userDataDir: '/tmp/playwright-tmp', // necessary to launch the browser in normal mode instead of incognito,
0 commit comments