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
*`field`**([string][1] | [object][3])** checkbox located by label | name | CSS | XPath | strict locator.
270
-
*`context`**([string][1]? | [object][3])** (optional, `null` by default) element located by CSS | XPath | strict locator.
270
+
*`context`**([string][1]? | [object][3])** (optional, `null` by default) element located by CSS | XPath | strict locator (currently ignored by this helper).
*`locator`**([string][1] | [object][3])** clickable link or button located by text, or any element located by CSS|XPath|strict locator.
335
-
*`context`**([string][1]? | [object][3])** (optional, `null` by default) element to search in CSS|XPath|Strict locator.
335
+
*`context`**([string][1]? | [object][3])** (optional, `null` by default) element to search in CSS|XPath|Strict locator (currently ignored by this helper).
*`locator`**([string][1] | [object][3])** clickable link or button located by text, or any element located by CSS|XPath|strict locator.
484
-
*`context`**([string][1]? | [object][3])** (optional, `null` by default) element to search in CSS|XPath|Strict locator.
484
+
*`context`**([string][1]? | [object][3])** (optional, `null` by default) element to search in CSS|XPath|Strict locator (currently ignored by this helper).
*`field`**([string][1] | [object][3])** checkbox located by label | name | CSS | XPath | strict locator.
850
-
*`context`**([string][1]? | [object][3])** (optional, `null` by default) element located by CSS | XPath | strict locator.
850
+
*`context`**([string][1]? | [object][3])** (optional, `null` by default) element located by CSS | XPath | strict locator (currently ignored by this helper).
Copy file name to clipboardExpand all lines: lib/helper/CDPBrowser.js
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -801,7 +801,7 @@ class CDPBrowser extends Helper {
801
801
* ```
802
802
*
803
803
* @param {CodeceptJS.LocatorOrString} locator clickable link or button located by text, or any element located by CSS|XPath|strict locator.
804
-
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element to search in CSS|XPath|Strict locator.
804
+
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element to search in CSS|XPath|Strict locator (currently ignored by this helper).
805
805
* @returns {Promise<void>}
806
806
* @throws {Error} if the matched element has a zero-size bounding box.
807
807
*/
@@ -844,7 +844,7 @@ class CDPBrowser extends Helper {
844
844
* ```
845
845
*
846
846
* @param {CodeceptJS.LocatorOrString} locator clickable link or button located by text, or any element located by CSS|XPath|strict locator.
847
-
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element to search in CSS|XPath|Strict locator.
847
+
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element to search in CSS|XPath|Strict locator (currently ignored by this helper).
848
848
* @returns {Promise<void>}
849
849
*/
850
850
asyncforceClick(locator,context=null){
@@ -959,7 +959,7 @@ class CDPBrowser extends Helper {
959
959
* ```
960
960
*
961
961
* @param {CodeceptJS.LocatorOrString} field checkbox located by label | name | CSS | XPath | strict locator.
962
-
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element located by CSS | XPath | strict locator.
962
+
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element located by CSS | XPath | strict locator (currently ignored by this helper).
963
963
* @returns {Promise<void>}
964
964
*/
965
965
asynccheckOption(field,context=null){
@@ -978,7 +978,7 @@ class CDPBrowser extends Helper {
978
978
* ```
979
979
*
980
980
* @param {CodeceptJS.LocatorOrString} field checkbox located by label | name | CSS | XPath | strict locator.
981
-
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element located by CSS | XPath | strict locator.
981
+
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element located by CSS | XPath | strict locator (currently ignored by this helper).
0 commit comments