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][10])** clickable link or button located by text, or any element located by CSS|XPath|strict locator.
937
-
-`context`**([string][5]? | [object][10] | null)** (optional, `null` by default) element to search in CSS|XPath|Strict locator.
938
-
⚠️ returns a _promise_ which is synchronized internally by recorder (optional, default `null`)
939
+
-`context`**([string][5]? | [object][10] | null)** (optional, `null` by default) element to search in CSS|XPath|Strict locator. (optional, default `null`)
940
+
941
+
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
939
942
940
943
### dontSeeCheckboxIsChecked
941
944
@@ -950,7 +953,8 @@ I.dontSeeCheckboxIsChecked('agree'); // located by name
950
953
#### Parameters
951
954
952
955
-`field`**([string][5]\|[object][10])** located by label|name|CSS|XPath|strict locator.
953
-
⚠️ returns a _promise_ which is synchronized internally by recorder
956
+
957
+
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
954
958
955
959
### dontSeeElement
956
960
@@ -963,7 +967,8 @@ I.dontSeeElement('.modal'); // modal is not shown
963
967
#### Parameters
964
968
965
969
-`locator`**([string][5]\|[object][10])** located by CSS|XPath|Strict locator.
966
-
⚠️ returns a _promise_ which is synchronized internally by recorder
970
+
971
+
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
967
972
968
973
### dontSeeInField
969
974
@@ -979,7 +984,8 @@ I.dontSeeInField({ css: 'form input.email' }, '[email protected]'); // field by CSS
979
984
980
985
-`field`**([string][5]\|[object][10])** located by label|name|CSS|XPath|strict locator.
981
986
-`value`**([string][5]\|[object][10])** value to check.
982
-
⚠️ returns a _promise_ which is synchronized internally by recorder
987
+
988
+
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
983
989
984
990
### dontSee
985
991
@@ -994,8 +1000,9 @@ I.dontSee('Login', '.nav'); // no login inside .nav element
994
1000
#### Parameters
995
1001
996
1002
-`text`**[string][5]** which is not present.
997
-
-`context`**([string][5]\|[object][10])?** (optional) element located by CSS|XPath|strict locator in which to perfrom search.
998
-
⚠️ returns a _promise_ which is synchronized internally by recorder (optional, default `null`)
1003
+
-`context`**([string][5]\|[object][10])?** (optional) element located by CSS|XPath|strict locator in which to perfrom search. (optional, default `null`)
1004
+
1005
+
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
-`context`**([string][5]? | [object][10])** (optional, `null` by default) element located by CSS|Xpath|strict locator in which to search for text.
1229
-
⚠️ returns a _promise_ which is synchronized internally by recorder (optional, default `null`)
1240
+
-`context`**([string][5]? | [object][10])** (optional, `null` by default) element located by CSS|Xpath|strict locator in which to search for text. (optional, default `null`)
1241
+
1242
+
Returns **[Promise][6]<void>** automatically synchronized promise through #recorder
1230
1243
1231
1244
### selectOption
1232
1245
@@ -1253,7 +1266,8 @@ I.selectOption('Which OS do you use?', ['Android', 'iOS']);
1253
1266
1254
1267
-`select`**([string][5]\|[object][10])** field located by label|name|CSS|XPath|strict locator.
1255
1268
-`option`**([string][5]\|[Array][8]<any>)** visible text or value of option.
1256
-
⚠️ returns a _promise_ which is synchronized internally by recorderSupported only for web testing
1269
+
1270
+
Returns **[Promise][6]<void>** automatically synchronized promise through #recorderSupported only for web testing
0 commit comments