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
* @param {LocatorOrString} locator located by CSS|XPath|strict locator.
1808
+
* @param {string | object} locator located by CSS|XPath|strict locator.
1809
1809
* @param {ScrollIntoViewOptions|boolean} scrollIntoViewOptions either alignToTop=true|false or scrollIntoViewOptions. See https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView.
1810
1810
* @returns {void} automatically synchronized promise through #recorder
1811
1811
*
@@ -1825,7 +1825,7 @@ class Appium extends Webdriver {
* @param {CodeceptJS.LocatorOrString} field located by label|name|CSS|XPath|strict locator.
1866
-
* @param {CodeceptJS.StringOrSecret} value value to check.
1865
+
* @param {string | object} field located by label|name|CSS|XPath|strict locator.
1866
+
* @param {string | object} value value to check.
1867
1867
* @returns {void} automatically synchronized promise through #recorder
1868
1868
*
1869
1869
*
@@ -1884,7 +1884,7 @@ class Appium extends Webdriver {
1884
1884
* I.see('Register', {css: 'form.register'}); // use strict locator
1885
1885
* ```
1886
1886
* @param {string} text expected on page.
1887
-
* @param {?CodeceptJS.LocatorOrString} [context=null] (optional, `null` by default) element located by CSS|Xpath|strict locator in which to search for text.
1887
+
* @param {?string | object} [context=null] (optional, `null` by default) element located by CSS|Xpath|strict locator in which to search for text.
1888
1888
* @returns {void} automatically synchronized promise through #recorder
1889
1889
*
1890
1890
*
@@ -1913,7 +1913,7 @@ class Appium extends Webdriver {
1913
1913
* ```js
1914
1914
* I.selectOption('Which OS do you use?', ['Android', 'iOS']);
1915
1915
* ```
1916
-
* @param {LocatorOrString} select field located by label|name|CSS|XPath|strict locator.
1916
+
* @param {string | object} select field located by label|name|CSS|XPath|strict locator.
1917
1917
* @param {string|Array<*>} option visible text or value of option.
1918
1918
* @returns {void} automatically synchronized promise through #recorder
1919
1919
*
@@ -1934,7 +1934,7 @@ class Appium extends Webdriver {
1934
1934
* I.waitForElement('.btn.continue', 5); // wait for 5 secs
1935
1935
* ```
1936
1936
*
1937
-
* @param {CodeceptJS.LocatorOrString} locator element located by CSS|XPath|strict locator.
1937
+
* @param {string | object} locator element located by CSS|XPath|strict locator.
1938
1938
* @param {number} [sec] (optional, `1` by default) time in seconds to wait
1939
1939
* @returns {void} automatically synchronized promise through #recorder
1940
1940
*
@@ -1953,7 +1953,7 @@ class Appium extends Webdriver {
1953
1953
* I.waitForVisible('#popup');
1954
1954
* ```
1955
1955
*
1956
-
* @param {CodeceptJS.LocatorOrString} locator element located by CSS|XPath|strict locator.
1956
+
* @param {string | object} locator element located by CSS|XPath|strict locator.
1957
1957
* @param {number} [sec=1] (optional, `1` by default) time in seconds to wait
1958
1958
* @returns {void} automatically synchronized promise through #recorder
1959
1959
*
@@ -1972,7 +1972,7 @@ class Appium extends Webdriver {
1972
1972
* I.waitForInvisible('#popup');
1973
1973
* ```
1974
1974
*
1975
-
* @param {CodeceptJS.LocatorOrString} locator element located by CSS|XPath|strict locator.
1975
+
* @param {string | object} locator element located by CSS|XPath|strict locator.
1976
1976
* @param {number} [sec=1] (optional, `1` by default) time in seconds to wait
1977
1977
* @returns {void} automatically synchronized promise through #recorder
1978
1978
*
@@ -1995,7 +1995,7 @@ class Appium extends Webdriver {
1995
1995
*
1996
1996
* @param {string }text to wait for.
1997
1997
* @param {number} [sec=1] (optional, `1` by default) time in seconds to wait
1998
-
* @param {CodeceptJS.LocatorOrString} [context] (optional) element located by CSS|XPath|strict locator.
1998
+
* @param {string | object} [context] (optional) element located by CSS|XPath|strict locator.
1999
1999
* @returns {void} automatically synchronized promise through #recorder
0 commit comments