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
-`locator`**([string][5]\|[object][11])** clickable link or button located by text, or any element located by CSS|XPath|strict locator.
941
941
-`context`**([string][5]? | [object][11] | null)** (optional, `null` by default) element to search in CSS|XPath|Strict locator. (optional, default `null`)
942
942
943
-
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
943
+
Returns **void** automatically synchronized promise through #recorder
944
944
945
945
### dontSeeCheckboxIsChecked
946
946
@@ -956,7 +956,7 @@ I.dontSeeCheckboxIsChecked('agree'); // located by name
956
956
957
957
-`field`**([string][5]\|[object][11])** located by label|name|CSS|XPath|strict locator.
958
958
959
-
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
959
+
Returns **void** automatically synchronized promise through #recorder
960
960
961
961
### dontSeeElement
962
962
@@ -970,7 +970,7 @@ I.dontSeeElement('.modal'); // modal is not shown
970
970
971
971
-`locator`**([string][5]\|[object][11])** located by CSS|XPath|Strict locator.
972
972
973
-
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
973
+
Returns **void** automatically synchronized promise through #recorder
974
974
975
975
### dontSeeInField
976
976
@@ -987,7 +987,7 @@ I.dontSeeInField({ css: 'form input.email' }, '[email protected]'); // field by CSS
987
987
-`field`**([string][5]\|[object][11])** located by label|name|CSS|XPath|strict locator.
988
988
-`value`**([string][5]\|[object][11])** value to check.
989
989
990
-
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
990
+
Returns **void** automatically synchronized promise through #recorder
991
991
992
992
### dontSee
993
993
@@ -1004,7 +1004,7 @@ I.dontSee('Login', '.nav'); // no login inside .nav element
1004
1004
-`text`**[string][5]** which is not present.
1005
1005
-`context`**([string][5]\|[object][11])?** (optional) element located by CSS|XPath|strict locator in which to perfrom search. (optional, default `null`)
1006
1006
1007
-
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
1007
+
Returns **void** automatically synchronized promise through #recorder
-`context`**([string][5]? | [object][11])** (optional, `null` by default) element located by CSS|Xpath|strict locator in which to search for text. (optional, default `null`)
1243
1243
1244
-
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
1244
+
Returns **void** automatically synchronized promise through #recorder
1245
1245
1246
1246
### selectOption
1247
1247
@@ -1269,7 +1269,7 @@ I.selectOption('Which OS do you use?', ['Android', 'iOS']);
1269
1269
-`select`**([string][5]\|[object][11])** field located by label|name|CSS|XPath|strict locator.
1270
1270
-`option`**([string][5]\|[Array][8]<any>)** visible text or value of option.
1271
1271
1272
-
Returns **[Promise][6]<void>** automatically synchronized promise through #recorderSupported only for web testing
1272
+
Returns **void** automatically synchronized promise through #recorderSupported only for web testing
0 commit comments