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
+1-1
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ Type: [object][5]
74
74
-`ignoreLog`**[Array][9]<[string][8]>?** An array with console message types that are not logged to debug log. Default value is `['warning', 'log']`. E.g. you can set `[]` to log all messages. See all possible [values][44].
75
75
-`ignoreHTTPSErrors`**[boolean][32]?** Allows access to untrustworthy pages, e.g. to a page with an expired certificate. Default value is `false`
76
76
-`bypassCSP`**[boolean][32]?** bypass Content Security Policy or CSP
77
-
-`highlightElement`**[boolean][32]?** highlight the interacting elements. Default: false
77
+
-`highlightElement`**[boolean][32]?** highlight the interacting elements. Default: false. Note: only activate under verbose mode (--verbose).
Copy file name to clipboardExpand all lines: docs/helpers/Puppeteer.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ Type: [object][4]
56
56
-`manualStart`**[boolean][20]?** do not start browser before a test, start it manually inside a helper with `this.helpers["Puppeteer"]._startBrowser()`.
57
57
-`browser`**[string][6]?** can be changed to `firefox` when using [puppeteer-firefox][2].
58
58
-`chrome`**[object][4]?** pass additional [Puppeteer run options][25].
59
-
-`highlightElement`**[boolean][20]?** highlight the interacting elements. Default: false
59
+
-`highlightElement`**[boolean][20]?** highlight the interacting elements. Default: false. Note: only activate under verbose mode (--verbose).
-`manualStart`**[boolean][32]?** do not start browser before a test, start it manually inside a helper with `this.helpers["WebDriver"]._startBrowser()`.
47
47
-`timeouts`**[object][16]?**[WebDriver timeouts][37] defined as hash.
48
-
-`highlightElement`**[boolean][32]?** highlight the interacting elements. Default: false
48
+
-`highlightElement`**[boolean][32]?** highlight the interacting elements. Default: false. Note: only activate under verbose mode (--verbose).
* @prop {string[]} [ignoreLog] - An array with console message types that are not logged to debug log. Default value is `['warning', 'log']`. E.g. you can set `[]` to log all messages. See all possible [values](https://playwright.dev/docs/api/class-consolemessage#console-message-type).
95
94
* @prop {boolean} [ignoreHTTPSErrors] - Allows access to untrustworthy pages, e.g. to a page with an expired certificate. Default value is `false`
Copy file name to clipboardExpand all lines: lib/helper/Puppeteer.js
+4-4
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ const consoleLogStore = new Console();
69
69
* @prop {boolean} [manualStart=false] - do not start browser before a test, start it manually inside a helper with `this.helpers["Puppeteer"]._startBrowser()`.
70
70
* @prop {string} [browser=chrome] - can be changed to `firefox` when using [puppeteer-firefox](https://codecept.io/helpers/Puppeteer-firefox).
71
71
* @prop {object} [chrome] - pass additional [Puppeteer run options](https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#puppeteerlaunchoptions).
* @prop {boolean} [manualStart=false] - do not start browser before a test, start it manually inside a helper with `this.helpers["WebDriver"]._startBrowser()`.
64
64
* @prop {object} [timeouts] [WebDriver timeouts](http://webdriver.io/docs/timeouts.html) defined as hash.
0 commit comments