Selenese (Selenium IDE) Commands Reference
Katalon Automation Recorder provides various Selenium Commands (Selenese) to help automate web application testing. These commands stimulate actions on the application under test (AUT) and create automation test scripts.
The below table is the list of all supported Selenese Commands.
Command | Parameters | |
---|---|---|
1 | addLocationStrategy |
addLocationStrategy(strategyName, functionDefinition) Arguments: *strategyName - the name of the strategy to define; this should use only letters [a-zA-Z] with no spaces or other punctuation.
|
2 | addLocationStrategyAndWait |
addLocationStrategyAndWait(strategyName, functionDefinition) Arguments:
|
3 | addScript |
addScript(scriptContent, scriptTagId) Arguments: Loads script content into a new script tag in the Selenium document. This differs from the runScript command in that runScript adds the script tag to the document of the AUT, not the Selenium document. The following entities in the script content are replaced by the characters they represent: < > & The corresponding remove command is removeScript. |
4 | addScriptAndWait | addScriptAndWait(scriptContent, scriptTagId) Generated from addScript(scriptContent, scriptTagId Arguments: *scriptContent - the Javascript content of the script to add*scriptTagId - (optional) the id of the new script tag. If specified, and an element with this id already exists, this operation will fail. Loads script content into a new script tag in the Selenium document. This differs from the runScript command in that runScript adds the script tag to the document of the AUT, not the Selenium document. The following entities in the script content are replaced by the characters they represent: < > & The corresponding remove command is removeScript. |
5 | addSelection |
addSelection(locator, optionLocator Arguments: *locator - an element locator identifying a multi-select box*optionLocator - an option locator (a label by default) Add a selection to the set of selected options in a multi-select element using an option locator. @see #doSelect for details of option locators |
6 | addSelectionAndWait |
addSelectionAndWait(locator, optionLocator) Arguments: *locator - an element locator identifying a multi-select box*optionLocator - an option locator (a label by default) Add a selection to the set of selected options in a multi-select element using an option locator. @see #doSelect for details of option locators |
7 | ajaxWait | ajaxWait |
8 | ajaxWaitAndWait | ajaxWaitAndWait |
9 | allowNativeXpath |
allowNativeXpath(allow Arguments: *allow - boolean, true means we'll prefer to use native XPath; false means we'll only use JS XPathSpecifies whether Selenium should use the native in-browser implementation of XPath (if any native version is available); if you pass "false" to this function, we will always use our pure-JavaScript xpath library. Using the pure-JS xpath library can improve the consistency of xpath element locators between different browser vendors, but the pure-JS version is much slower than the native implementations. |
10 | allowNativeXpathAndWait |
allowNativeXpathAndWait(allow) Arguments: *allow - boolean, true means we'll prefer to use native XPath; false means we'll only use JS XPathSpecifies whether Selenium should use the native in-browser implementation of XPath (if any native version is available); if you pass "false" to this function, we will always use our pure-JavaScript xpath library. Using the pure-JS xpath library can improve the consistency of xpath element locators between different browser vendors, but the pure-JS version is much slower than the native implementations. |
11 | altKeyDown |
altKeyDown() Press the alt key and hold it down until doAltUp() is called or a new page is loaded. |
12 | altKeyDownAndWait |
altKeyDownAndWait() Generated from altKeyDown() Press the alt key and hold it down until doAltUp() is called or a new page is loaded. |
13 | altKeyUp |
altKeyUp() Release the alt key. |
14 | altKeyUpAndWait |
altKeyUpAndWait() Generated from altKeyUp() Release the alt key. |
15 | answerOnNextPrompt |
answerOnNextPrompt(answer Arguments: *answer - the answer to give in response to the prompt pop-up Instructs Selenium to return the specified answer string in response to the next JavaScript prompt [window.prompt()]. |
16 | assertAlert |
assertAlert(pattern) Retrieves the message of a JavaScript alert generated during the previous action, or fail if there were no alerts. Getting an alert has the same effect as manually clicking OK. If an alert is generated but you do not consume it with getAlert, the next Selenium action will fail. Under Selenium, JavaScript alerts will NOT pop up a visible alert dialog. Selenium does NOT support JavaScript alerts that are generated in a page's onload() event handler. In this case, a visible dialog WILL be generated and Selenium will hang until someone manually clicks OK. |
17 | assertAlertAndWait |
assertAlertAndWait(pattern) Retrieves the message of a JavaScript alert generated during the previous action, or fail if there were no alerts. Getting an alert has the same effect as manually clicking OK. If an alert is generated but you do not consume it with getAlert, the next Selenium action will fail. Under Selenium, JavaScript alerts will NOT pop up a visible alert dialog. Selenium does NOT support JavaScript alerts that are generated in a page's onload() event handler. In this case a visible dialog WILL be generated and Selenium will hang until someone manually clicks OK. |
18 | assertAlertNotPresent |
assertAlertNotPresent() Has an alert occurred? This function never throws an exception |
19 | assertAlertPresent |
assertAlertPresent() Has an alert occurred? This function never throws an exception |
20 | assertAllButtons |
assertAllButtons(pattern) Returns the IDs of all buttons on the page. If a given button has no ID, it will appear as "" in this array. |
21 | assertAllFields | assertAllFields(pattern) Generated from getAllFields(). Returns: the IDs of all field on the page |
22 | assertAllLinks | assertAllLinks(pattern) Generated from getAllLinks(). Returns: the IDs of all links on the page |
23 | assertAllWindowIds | assertAllWindowIds(pattern) Generated from getAllWindowIds(). Returns: Array of identifiers of all windows that the browser knows about. |
24 | assertAllWindowNames | assertAllWindowNames(pattern) Generated from getAllWindowNames(). Returns: Array of names of all windows that the browser knows about. |
25 | assertAllWindowTitles | assertAllWindowTitles(pattern) Generated from getAllWindowTitles(). Returns: Array of titles of all windows that the browser knows about. |
26 | assertAttribute | assertAttribute(attributeLocator, pattern) Generated from getAttribute(attributeLocator) Arguments: *attributeLocator - an element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar" . Returns: the value of the specified attr |
27 | assertAttributeFromAllWindows | assertAttributeFromAllWindows(attributeName, pattern) Generated from getAttributeFromAllWindows(attributeName Arguments: *attributeName - name of an attribute on the windows .Returns: the set of values of this attribute from all known windows. |
28 | assertBodyText | assertBodyText(pattern) Generated from getBodyText(). Returns: the entire text of the page |
29 | assertChecked | assertChecked(locator) Generated from isChecked(locator Arguments: *locator - an element locator pointing to a checkbox or radio button .Returns: true if the checkbox is checked, false otherwise |
30 | assertConfirmation | assertConfirmation(pattern) Generated from getConfirmation(). Returns: the message of the most recent JavaScript confirmation dialog |
31 | assertConfirmationAndWait | assertConfirmationAndWait(pattern) Generated from getConfirmation(). Returns: the message of the most recent JavaScript confirmation dialog |
32 | assertConfirmationNotPresent | assertConfirmationNotPresent() Generated from isConfirmationPresent(). Returns: true if there is a pending confirmation |
33 | assertConfirmationPresent | assertConfirmationPresent() Generated from isConfirmationPresent(). Returns: true if there is a pending confirmation |
34 | assertCookie | assertCookie(pattern) Generated from getCookie(). Returns: all cookies of the current page under test |
35 | assertCookieByName | assertCookieByName(name, pattern) Generated from getCookieByName(name Arguments: *name - the name of the cookie.Returns: the value of the cookie |
36 | assertCookieNotPresent | assertCookieNotPresent(name) Generated from isCookiePresent(name Arguments: *name - the name of the cookie.Returns: true if a cookie with the specified name is present, or false otherwise. |
37 | assertCookiePresent | assertCookiePresent(name) Generated from isCookiePresent(name Arguments: *name - the name of the cookie .Returns: true if a cookie with the specified name is present, or false otherwise. |
38 | assertCssCount | assertCssCount(css, pattern) Generated from getCssCount(css Arguments: *css - the css selector to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the specified css select |
39 | assertCursorPosition | assertCursorPosition(locator, pattern) Generated from getCursorPosition(locator Arguments: *locator - an element locator pointing to an input element or textarea.Returns: the numerical position of the cursor in the field |
40 | assertEditable | assertEditable(locator) Generated from isEditable(locator Arguments: *locator - an element locator.Returns: true if the input element is editable, false otherwise |
41 | assertElementHeight | assertElementHeight(locator, pattern) Generated from getElementHeight(locator Arguments: *locator - an element locator pointing to an element.Returns: height of an element in pixels |
42 | assertElementIndex | assertElementIndex(locator, pattern) Generated from getElementIndex(locator Arguments: *locator - an element locator pointing to an element.Returns: of relative index of the element to its parent (starting from 0) |
43 | assertElementNotPresent | assertElementNotPresent(locator) Generated from isElementPresent(locator Arguments: *locator - an element locator.Returns: true if the element is not present, false otherwise |
44 | assertElementPositionLeft | assertElementPositionLeft(locator, pattern) Generated from getElementPositionLeft(locator Arguments: *locator - an element locator pointing to an element OR an element itself.Returns: of pixels from the edge of the frame. |
45 | assertElementPositionTop | assertElementPositionTop(locator, pattern) Generated from getElementPositionTop(locator) Arguments: *locator - an element locator pointing to an element OR an element itself. Returns: of pixels from the edge of the frame. |
46 | assertElementPresent | assertElementPresent(locator) Generated from isElementPresent(locator Arguments: *locator - an element locator.Returns: true if the element is present, false otherwise |
47 | assertElementWidth | assertElementWidth(locator, pattern) Generated from getElementWidth(locator Arguments: *locator - an element locator pointing to an element .Returns: width of an element in pixels |
48 | assertEval | assertEval(script, pattern) Generated from getEval(script Arguments: *script - the JavaScript snippet to run.Returns: the results of evaluating the snippet |
49 | assertExpression | assertExpression(expression, pattern) Generated from getExpression(expression Arguments: *expression - the value to return.Returns: the value passed in |
50 | assertHtmlSource | assertHtmlSource(pattern) Generated from getHtmlSource(). Returns: the entire HTML source |
51 | assertLocation | assertLocation(pattern) Generated from getLocation(). Returns: the absolute URL of the current page |
52 | assertMouseSpeed | assertMouseSpeed(pattern) Generated from getMouseSpeed(). Returns: the number of pixels between "mousemove" events during dragAndDrop commands (default=10) |
53 | assertNotAlert | assertNotAlert(pattern) Generated from getAlert(). Returns: The message of the most recent JavaScript alert |
54 | assertNotAllButtons | assertNotAllButtons(pattern) Generated from getAllButtons(). Returns: the IDs of all buttons on the page |
55 | assertNotAllFields | assertNotAllFields(pattern) Generated from getAllFields(). Returns: the IDs of all field on the page |
56 | assertNotAllLinks | assertNotAllLinks(pattern) Generated from getAllLinks(). Returns: the IDs of all links on the page |
57 | assertNotAllWindowIds | assertNotAllWindowIds(pattern) Generated from getAllWindowIds(). Returns: Array of identifiers of all windows that the browser knows about. |
58 | assertNotAllWindowNames | assertNotAllWindowNames(pattern) Generated from getAllWindowNames(). Returns: Array of names of all windows that the browser knows about. |
59 | assertNotAllWindowTitles | assertNotAllWindowTitles(pattern) Generated from getAllWindowTitles(). Returns: Array of titles of all windows that the browser knows about. |
60 | assertNotAttribute | assertNotAttribute(attributeLocator, pattern) Generated from getAttribute(attributeLocator Arguments: *attributeLocator - an element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar" .Returns: the value of the specifie |
61 | assertNotAttributeFromAllWindows | assertNotAttributeFromAllWindows(attributeName, pattern) Generated from getAttributeFromAllWindows(attributeName Arguments: *attributeName - name of an attribute on the windows .Returns: the set of values of this attribute from all known windows. |
62 | assertNotBodyText | assertNotBodyText(pattern) Generated from getBodyText(). Returns: the entire text of the page |
63 | assertNotChecked | assertNotChecked(locator) Generated from isChecked(locator Arguments: *locator - an element locator pointing to a checkbox or radio button.Returns: true if the checkbox is checked, false otherwise |
64 | assertNotConfirmation | assertNotConfirmation(pattern) Generated from getConfirmation(). Returns: the message of the most recent JavaScript confirmation dialog |
65 | assertNotCookie | assertNotCookie(pattern) Generated from getCookie(). Returns: all cookies of the current page under test |
66 | assertNotCookieByName | assertNotCookieByName(name, pattern) Generated from getCookieByName(name Arguments: *name - the name of the cookie.Returns: the value of the cookie |
67 | assertNotCssCount | assertNotCssCount(css, pattern) Generated from getCssCount(css) Arguments: *css - the css selector to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the specified css sel |
68 | assertNotCursorPosition | assertNotCursorPosition(locator, pattern) Generated from getCursorPosition(locator Arguments: *locator - an element locator pointing to an input element or textarea .Returns: the numerical position of the cursor in the field |
69 | assertNotEditable | assertNotEditable(locator) Generated from isEditable(locator) Arguments: *locator - an element locator. Returns: true if the input element is editable, false otherwise |
70 | assertNotElementHeight | assertNotElementHeight(locator, pattern) Generated from getElementHeight(locator) Arguments: *locator - an element locator pointing to an element. Returns: height of an element in pixels |
71 | assertNotElementIndex | assertNotElementIndex(locator, pattern) Generated from getElementIndex(locator Arguments: *locator - an element locator pointing to an element .Returns: of relative index of the element to its parent (starting from 0) |
72 | assertNotElementPositionLeft | assertNotElementPositionLeft(locator, pattern) Generated from getElementPositionLeft(locator Arguments: *locator - an element locator pointing to an element OR an element itself .Returns: of pixels from the edge of the frame. |
73 | assertNotElementPositionTop | assertNotElementPositionTop(locator, pattern) Generated from getElementPositionTop(locator Arguments: *locator - an element locator pointing to an element OR an element itself.Returns: of pixels from the edge of the frame. |
74 | assertNotElementWidth | assertNotElementWidth(locator, pattern) Generated from getElementWidth(locator Arguments: *locator - an element locator pointing to an element.Returns: width of an element in pixels |
75 | assertNotEval | assertNotEval(script, pattern) Generated from getEval(script Arguments: *script - the JavaScript snippet to run .Returns: the results of evaluating the snippet |
76 | assertNotExpression | assertNotExpression(expression, pattern) Generated from getExpression(expression Arguments: *expression - the value to return.Returns: the value passed in |
77 | assertNotHtmlSource | assertNotHtmlSource(pattern) Generated from getHtmlSource(). Returns: the entire HTML source |
78 | assertNotLocation | assertNotLocation(pattern) Generated from getLocation(). Returns: the absolute URL of the current page |
79 | assertNotMouseSpeed | assertNotMouseSpeed(pattern) Generated from getMouseSpeed(). Returns: the number of pixels between "mousemove" events during dragAndDrop commands (default=10) |
80 | assertNotOrdered | assertNotOrdered(locator1, locator2) Generated from isOrdered(locator1, locator2 Arguments: *locator1 - an element locator pointing to the first element*locator2 - an element locator pointing to the second element . Returns: true if element1 is the |
81 | assertNotPrompt | assertNotPrompt(pattern) Generated from getPrompt(). Returns: the message of the most recent JavaScript question prompt |
82 | assertNotSelectOptions | assertNotSelectOptions(selectLocator, pattern) Generated from getSelectOptions(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all option labels in the specified select drop-down |
83 | assertNotSelectedId | assertNotSelectedId(selectLocator, pattern) Generated from getSelectedId(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: the selected option ID in the specified select drop-down |
84 | assertNotSelectedIds | assertNotSelectedIds(selectLocator, pattern) Generated from getSelectedIds(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option IDs in the specified select drop-down |
85 | assertNotSelectedIndex | assertNotSelectedIndex(selectLocator, pattern) Generated from getSelectedIndex(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: the selected option index in the specified select drop-down |
86 | assertNotSelectedIndexes | assertNotSelectedIndexes(selectLocator, pattern) Generated from getSelectedIndexes(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu . Returns: an array of all selected option indexes in the specified select dro |
87 | assertNotSelectedLabel | assertNotSelectedLabel(selectLocator, pattern) Generated from getSelectedLabel(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option label in the specified select drop-down |
88 | assertNotSelectedLabels | assertNotSelectedLabels(selectLocator, pattern) Generated from getSelectedLabels(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: an array of all selected option labels in the specified select drop-d |
89 | assertNotSelectedValue | assertNotSelectedValue(selectLocator, pattern) Generated from getSelectedValue(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option value in the specified select drop-down |
90 | assertNotSelectedValues | assertNotSelectedValues(selectLocator, pattern) Generated from getSelectedValues(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option values in the specified select drop- |
91 | assertNotSomethingSelected | assertNotSomethingSelected(selectLocator) Generated from isSomethingSelected(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: true if some option has been selected, false otherwise |
92 | assertNotSpeed | assertNotSpeed(pattern) Generated from getSpeed(). Returns: the execution speed in milliseconds. |
93 | assertNotTable | assertNotTable(tableCellAddress, pattern) Generated from getTable(tableCellAddress Arguments: *tableCellAddress - a cell address, e.g. "foo.1.4" .Returns: the text from the specified cell |
94 | assertNotText | assertNotText(locator, pattern) Generated from getText(locator Arguments: *locator - an element locatorReturns: the text of the element |
95 | assertNotTitle | assertNotTitle(pattern) Generated from getTitle(). Returns: the title of the current page |
96 | assertNotValue | assertNotValue(locator, pattern) Generated from getValue(locator Arguments: *locator - an element locator.Returns: the element value, or "on/off" for checkbox/radio elements |
97 | assertNotVisible | assertNotVisible(locator) Generated from isVisible(locator Arguments: *locator - an element locator.Returns: true if the specified element is visible, false otherwise |
98 | assertNotWhetherThisFrameMatchFrameExpression | assertNotWhetherThisFrameMatchFrameExpression(currentFrameString, target, pattern) Generated from getWhetherThisFrameMatchFrameExpression(currentFrameString, target Arguments: *currentFrameString - starting frame*target - new frame (which might be r |
99 | assertNotWhetherThisWindowMatchWindowExpression | assertNotWhetherThisWindowMatchWindowExpression(currentWindowString, target, pattern) Generated from getWhetherThisWindowMatchWindowExpression(currentWindowString, target Arguments: *currentWindowString - starting window*target - new window (which m |
100 | assertNotXpathCount | assertNotXpathCount(xpath, pattern) Generated from getXpathCount(xpath Arguments: *xpath - the xpath expression to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the spe |
101 | assertOrdered | assertOrdered(locator1, locator2) Generated from isOrdered(locator1, locator2 Arguments: *locator1 - an element locator pointing to the first element*locator2 - an element locator pointing to the second element. Returns: true if elemen |
102 | assertPrompt | assertPrompt(pattern) Generated from getPrompt(). Returns: the message of the most recent JavaScript question prompt |
103 | assertPromptAndWait | assertPromptAndWait(pattern) Generated from getPrompt(). Returns: the message of the most recent JavaScript question prompt |
104 | assertPromptNotPresent | assertPromptNotPresent() Generated from isPromptPresent(). Returns: true if there is a pending prompt |
105 | assertPromptPresent | assertPromptPresent() Generated from isPromptPresent(). Returns: true if there is a pending prompt |
106 | assertSelectOptions | assertSelectOptions(selectLocator, pattern) Generated from getSelectOptions(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: an array of all option labels in the specified select drop-down |
107 | assertSelectedId | assertSelectedId(selectLocator, pattern) Generated from getSelectedId(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option ID in the specified select drop-down |
108 | assertSelectedIds | assertSelectedIds(selectLocator, pattern) Generated from getSelectedIds(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option IDs in the specified select drop-down |
109 | assertSelectedIndex | assertSelectedIndex(selectLocator, pattern) Generated from getSelectedIndex(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option index in the specified select drop-down |
110 | assertSelectedIndexes | assertSelectedIndexes(selectLocator, pattern) Generated from getSelectedIndexes(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option indexes in the specified select drop- |
111 | assertSelectedLabel | assertSelectedLabel(selectLocator, pattern) Generated from getSelectedLabel(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option label in the specified select drop-down |
112 | assertSelectedLabels | assertSelectedLabels(selectLocator, pattern) Generated from getSelectedLabels(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option labels in the specified select drop-dow |
113 | assertSelectedValue | assertSelectedValue(selectLocator, pattern) Generated from getSelectedValue(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option value in the specified select drop-down |
114 | assertSelectedValues | assertSelectedValues(selectLocator, pattern) Generated from getSelectedValues(selectLocator Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option values in the specified select drop-dow |
115 | assertSomethingSelected |
assertSomethingSelected(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu . |
116 | assertSpeed | assertSpeed(pattern) Generated from getSpeed(). Returns: the execution speed in milliseconds. |
117 | assertTable | assertTable(tableCellAddress, pattern) Generated from getTable(tableCellAddress) Arguments: *tableCellAddress - a cell address, e.g. "foo.1.4" .Returns: the text from the specified cell |
118 | assertText |
assertText(locator, pattern) Arguments: |
119 | assertTextAndWait | assertTextAndWait(locator, pattern) Generated from getText(locator) Arguments: *locator - an element locator . Returns: the text of the element |
120 | assertTextNotPresent | assertTextNotPresent(pattern) This command is deprecated. Use the assertNotText command with an element locator instead. Generated from isTextPresent(pattern) Arguments: *pattern - a pattern to match with the text of the page . Returns: true if the patt |
121 | assertTextPresent | assertTextPresent(pattern) This command is deprecated. Use the assertText command with an element locator instead. Generated from isTextPresent(pattern) Arguments: *pattern - a pattern to match with the text of the page . Returns: true if the pattern m |
122 | assertTitle | assertTitle(pattern) Generated from getTitle(). Returns: the title of the current page |
123 | assertTitleAndWait | assertTitleAndWait(pattern) Generated from getTitle(). Returns: the title of the current page |
124 | assertValue | assertValue(locator, pattern) Generated from getValue(locator) Arguments: *locator - an element locator.Returns: the element value, or "on/off" for checkbox/radio elements |
125 | assertVisible | assertVisible(locator) Generated from isVisible(locator) Arguments: *locator - an element locator.Returns: true if the specified element is visible, false otherwise |
126 | assertWhetherThisFrameMatchFrameExpression | assertWhetherThisFrameMatchFrameExpression(currentFrameString, target, pattern) Generated from getWhetherThisFrameMatchFrameExpression(currentFrameString, target) Arguments: *currentFrameString - starting frame*target - new frame (which might be rela |
127 | assertWhetherThisWindowMatchWindowExpression | assertWhetherThisWindowMatchWindowExpression(currentWindowString, target, pattern) Generated from getWhetherThisWindowMatchWindowExpression(currentWindowString, target) Arguments: *currentWindowString - starting window*target - new window (which migh |
128 | assertXpathCount | assertXpathCount(xpath, pattern) Generated from getXpathCount(xpath) Arguments: *xpath - the xpath expression to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the specif |
129 | assignId | assignId(locator, identifier) Arguments: *locator - an element locator pointing to an element*identifier - a string to be used as the ID of the specified element |
130 | assignIdAndWait | assignIdAndWait(locator, identifier) Generated from assignId(locator, identifier) Arguments: *locator - an element locator pointing to an element*identifier - a string to be used as the ID of the specified element |
131 | break | break() |
132 | captureEntirePageScreenshot | captureEntirePageScreenshot(filename, kwargs) Arguments: *filename - the path to the file to persist the screenshot as. No filename extension will be appended by default. Directories will not be created if they do not exist, and an ex |
133 | captureEntirePageScreenshotAndWait | captureEntirePageScreenshotAndWait(filename, kwargs) Generated from captureEntirePageScreenshot(filename, kwargs) Arguments: *filename - the path to the file to persist the screenshot as. No filename extension will be appended by default. Directories w |
134 | check | check(locator) Arguments: *locator - an element locator |
135 | checkAndWait | checkAndWait(locator) Generated from check(locator) Arguments: *locator - an element locator |
136 | chooseCancelOnNextConfirmation | chooseCancelOnNextConfirmation() |
137 | chooseCancelOnNextPrompt | chooseCancelOnNextPrompt |
138 | chooseCancelOnNextPromptAndWait | chooseCancelOnNextPromptAndWait |
139 | chooseOkOnNextConfirmation | chooseOkOnNextConfirmation() |
140 | chooseOkOnNextConfirmationAndWait | chooseOkOnNextConfirmationAndWait() Generated from chooseOkOnNextConfirmation() |
141 | click |
click(locator) Arguments: *locator - an element locatorClicks on a link, button, checkbox or radio button. If the click action causes a new page to load (like a link usually does), call waitForPageToLoad. |
142 | clickAndWait |
clickAndWait(locator) Arguments: *locator - an element locatorClicks on a link, button, checkbox or radio button. If the click action causes a new page to load (like a link usually does), call waitForPageToLoad. |
143 | clickAt |
clickAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. Clicks on a link, button, checkbox or radio button. If the click action causes a new page to load (like a link usually does), call waitForPageToLoad. |
144 | clickAtAndWait |
clickAtAndWait(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. Clicks on a link, button, checkbox or radio button. If the click action causes a new page to load (like a link usually does), call waitForPageToLoad. |
145 | close | close() |
146 | contextMenu | contextMenu(locator) Arguments: *locator - an element locator |
147 | contextMenuAndWait | contextMenuAndWait(locator) Generated from contextMenu(locator) Arguments: *locator - an element locator |
148 | contextMenuAt | contextMenuAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. |
149 | contextMenuAtAndWait | contextMenuAtAndWait(locator, coordString) Generated from contextMenuAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the |
150 | controlKeyDown | controlKeyDown() |
151 | controlKeyDownAndWait | controlKeyDownAndWait() Generated from controlKeyDown() |
152 | controlKeyUp | controlKeyUp() |
153 | controlKeyUpAndWait | controlKeyUpAndWait() Generated from controlKeyUp() |
154 | createCookie | createCookie(nameValuePair, optionsString) Arguments: *nameValuePair - name and value of the cookie in a format "name=value"*optionsString - options for the cookie. Currently supported options include 'path', 'max_age' and 'domain'. the optionsString' |
155 | createCookieAndWait | createCookieAndWait(nameValuePair, optionsString) Generated from createCookie(nameValuePair, optionsString) Arguments: *nameValuePair - name and value of the cookie in a format "name=value"*optionsString - options for the cookie. Currently supported |
156 | deleteAllVisibleCookies | deleteAllVisibleCookies() |
157 | deleteAllVisibleCookiesAndWait | deleteAllVisibleCookiesAndWait() Generated from deleteAllVisibleCookies() |
158 | deleteCookie | deleteCookie(name, optionsString) Arguments: *name - the name of the cookie to be deleted*optionsString - options for the cookie. Currently supported options include 'path', 'domain' and 'recurse.' The optionsString's format is "path=/path/, domain=.f |
159 | deleteCookieAndWait | deleteCookieAndWait(name, optionsString) Generated from deleteCookie(name, optionsString) Arguments: *name - the name of the cookie to be deleted*optionsString - options for the cookie. Currently supported options include 'path', 'domain' and 'recur |
160 | deselectPopUp | deselectPopUp() |
161 | deselectPopUpAndWait | deselectPopUpAndWait() Generated from deselectPopUp() |
162 | domWait | domWait |
163 | domWaitAndWait | domWaitAndWait |
164 | doubleClick | doubleClick(locator) Arguments: *locator - an element locator |
165 | doubleClickAndWait | doubleClickAndWait(locator) Generated from doubleClick(locator) Arguments: *locator - an element locator |
166 | doubleClickAt | doubleClickAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. |
167 | doubleClickAtAndWait | doubleClickAtAndWait(locator, coordString) Generated from doubleClickAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the |
168 | dragAndDrop | dragAndDrop(locator, movementsString) Arguments: *locator - an element locator*movementsString - offset in pixels from the current location to which the element should be moved, e.g., "+70,-300" |
169 | dragAndDropAndWait | dragAndDropAndWait(locator, movementsString) Generated from dragAndDrop(locator, movementsString) Arguments: *locator - an element locator*movementsString - offset in pixels from the current location to which the element should be moved, e.g., "+70,- |
170 | dragAndDropToObject | dragAndDropToObject(locatorOfObjectToBeDragged, locatorOfDragDestinationObject) Arguments: *locatorOfObjectToBeDragged - an element to be dragged*locatorOfDragDestinationObject - an element whose location (i.e., whose center-most pixel) will be the po |
171 | dragAndDropToObjectAndWait | dragAndDropToObjectAndWait(locatorOfObjectToBeDragged, locatorOfDragDestinationObject) Generated from dragAndDropToObject(locatorOfObjectToBeDragged, locatorOfDragDestinationObject) Arguments: *locatorOfObjectToBeDragged - an element to be dragged*lo |
172 | echo | echo(message) Arguments: *message - the message to print |
173 | echoAndWait | echoAndWait(message) Generated from echo(message) Arguments: *message - the message to print |
174 | editContent | editContent |
175 | editContentAndWait | editContentAndWait |
176 | fireEvent | fireEvent(locator, eventName) Arguments: *locator - an element locator*eventName - the event name, e.g. "focus" or "blur" |
177 | fireEventAndWait | fireEventAndWait(locator, eventName) Generated from fireEvent(locator, eventName) Arguments: *locator - an element locator*eventName - the event name, e.g. "focus" or "blur" |
178 | focus | focus(locator) Arguments: *locator - an element locator |
179 | focusAndWait | focusAndWait(locator) Generated from focus(locator) Arguments: *locator - an element locator |
180 | goBack | goBack() |
181 | goBackAndWait | goBackAndWait() Generated from goBack() |
182 | highlight | highlight(locator) Arguments: *locator - an element locator |
183 | highlightAndWait | highlightAndWait(locator) Generated from highlight(locator) Arguments: *locator - an element locator |
184 | ignoreAttributesWithoutValue | ignoreAttributesWithoutValue(ignore) Arguments: *ignore - boolean, true means we'll ignore attributes without value at the expense of xpath "correctness"; false means we'll sacrifice speed for correctness. |
185 | ignoreAttributesWithoutValueAndWait | ignoreAttributesWithoutValueAndWait(ignore) Generated from ignoreAttributesWithoutValue(ignore) Arguments: *ignore - boolean, true means we'll ignore attributes without value at the expense of xpath "correctness"; false means we'll sacrifice speed for |
186 | keyDown | keyDown(locator, keySequence) This command is deprecated. Use the sendKeys command instead. Arguments: *locator - an element locator*keySequence - Either be a string("\" followed by the numeric keycode of the keytobe pressed, normally theASCIIvalu |
187 | keyDownAndWait | keyDownAndWait(locator, keySequence) This command is deprecated. Use the sendKeysAndWait command instead. Generated from keyDown(locator, keySequence) Arguments: *locator - an element locator*keySequence - Either be a string("\" followed by the numeric |
188 | keyPress | keyPress(locator, keySequence) This command is deprecated. Use the sendKeys command instead. Arguments: *locator - an element locator*keySequence - Either be a string("\" followed by the numeric keycode of the keytobe pressed, normally the ASCIIval |
189 | keyPressAndWait | keyPressAndWait(locator, keySequence) This command is deprecated. Use the sendKeysAndWait command instead. Generated from keyPress(locator, keySequence) Arguments: *locator - an element locator*keySequence - Either be a string("\" followed bythenumer |
190 | keyUp | keyUp(locator, keySequence) This command is deprecated. Use the sendKeys command instead. Arguments: *locator - an element locator*keySequence - Either be a string("\" followed by the numeric keycode of the key to be pressed, normally the ASCII value |
191 | keyUpAndWait | keyUpAndWait(locator, keySequence) This command is deprecated. Use the sendKeysAndWait command instead. Generated from keyUp(locator, keySequence) Arguments: *locator - an element locator*keySequence - Either be a string("\" followed by the numeric ke |
192 | metaKeyDown | metaKeyDown() |
193 | metaKeyDownAndWait | metaKeyDownAndWait() Generated from metaKeyDown() |
194 | metaKeyUp | metaKeyUp() |
195 | metaKeyUpAndWait | metaKeyUpAndWait() Generated from metaKeyUp() |
196 | mouseDown | mouseDown(locator) Arguments: *locator - an element locator |
197 | mouseDownAndWait | mouseDownAndWait(locator) Generated from mouseDown(locator) Arguments: *locator - an element locator |
198 | mouseDownAt | mouseDownAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. |
199 | mouseDownAtAndWait | mouseDownAtAndWait(locator, coordString) Generated from mouseDownAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by |
200 | mouseDownRight | mouseDownRight(locator) Arguments: *locator - an element locator |
201 | mouseDownRightAndWait | mouseDownRightAndWait(locator) Generated from mouseDownRight(locator) Arguments: *locator - an element locator |
202 | mouseDownRightAt | mouseDownRightAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. |
203 | mouseDownRightAtAndWait | mouseDownRightAtAndWait(locator, coordString) Generated from mouseDownRightAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element re |
204 | mouseMove | mouseMove(locator) Arguments: *locator - an element locator |
205 | mouseMoveAndWait | mouseMoveAndWait(locator) Generated from mouseMove(locator) Arguments: *locator - an element locator |
206 | mouseMoveAt | mouseMoveAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. |
207 | mouseMoveAtAndWait | mouseMoveAtAndWait(locator, coordString) Generated from mouseMoveAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by |
208 | mouseOut | mouseOut(locator) Arguments: *locator - an element locator |
209 | mouseOutAndWait | mouseOutAndWait(locator) Generated from mouseOut(locator) Arguments: *locator - an element locator |
210 | mouseOver | mouseOver(locator) Arguments: *locator - an element locator |
211 | mouseOverAndWait | mouseOverAndWait(locator) Generated from mouseOver(locator) Arguments: *locator - an element locator |
212 | mouseUp | mouseUp(locator) Arguments: *locator - an element locator |
213 | mouseUpAndWait | mouseUpAndWait(locator) Generated from mouseUp(locator) Arguments: *locator - an element locator |
214 | mouseUpAt | mouseUpAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. |
215 | mouseUpAtAndWait | mouseUpAtAndWait(locator, coordString) Generated from mouseUpAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the |
216 | mouseUpRight | mouseUpRight(locator) Arguments: *locator - an element locator |
217 | mouseUpRightAndWait | mouseUpRightAndWait(locator) Generated from mouseUpRight(locator) Arguments: *locator - an element locator |
218 | mouseUpRightAt | mouseUpRightAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element returned by the locator. |
219 | mouseUpRightAtAndWait | mouseUpRightAtAndWait(locator, coordString) Generated from mouseUpRightAt(locator, coordString) Arguments: *locator - an element locator*coordString - specifies the x,y position (i.e. - 10,20) of the mouse event relative to the element return |
220 | open | open(url) Arguments: *url - the URL to open; may be relative or absolute |
221 | openWindow | openWindow(url, windowID) Arguments: *url - the URL to open, which can be blank*windowID - the JavaScript window ID of the window to select |
222 | openWindowAndWait | openWindowAndWait(url, windowID) Generated from openWindow(url, windowID) Arguments: *url - the URL to open, which can be blank*windowID - the JavaScript window ID of the window to select |
223 | pageWait | pageWait |
224 | pageWaitAndWait | pageWaitAndWait |
225 | pause | pause(waitTime) Arguments: *waitTime - the amount of time to sleep (in milliseconds) |
226 | prePageWait | prePageWait |
227 | prePageWaitAndWait | prePageWaitAndWait |
228 | refresh | refresh() |
229 | refreshAndWait | refreshAndWait() Generated from refresh() |
230 | removeAllSelections | removeAllSelections(locator) Arguments: *locator - an element locator identifying a multi-select box |
231 | removeAllSelectionsAndWait | removeAllSelectionsAndWait(locator) Generated from removeAllSelections(locator) Arguments: *locator - an element locator identifying a multi-select box |
232 | removeScript | removeScript(scriptTagId) Arguments: *scriptTagId - the id of the script element to remove. |
233 | removeScriptAndWait | removeScriptAndWait(scriptTagId) Generated from removeScript(scriptTagId) Arguments: *scriptTagId - the id of the script element to remove. |
234 | removeSelection | removeSelection(locator, optionLocator) Arguments: *locator - an element locator identifying a multi-select box*optionLocator - an option locator (a label by default) |
235 | removeSelectionAndWait | removeSelectionAndWait(locator, optionLocator) Generated from removeSelection(locator, optionLocator) Arguments: *locator - an element locator identifying a multi-select box*optionLocator - an option locator (a label by default) |
236 | rollup | rollup(rollupName, kwargs) Arguments: *rollupName - the name of the rollup command*kwargs - keyword arguments string that influences how the rollup expands into commands |
237 | rollupAndWait | rollupAndWait(rollupName, kwargs) Generated from rollup(rollupName, kwargs) Arguments: *rollupName - the name of the rollup command*kwargs - keyword arguments string that influences how the rollup expands into commands |
238 | runScript | runScript(script) Arguments: *script - the JavaScript snippet to run |
239 | runScriptAndWait | runScriptAndWait(script) Generated from runScript(script) Arguments: *script - the JavaScript snippet to run |
240 | select | select(selectLocator, optionLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu*optionLocator - an option locator (a label by default) |
241 | selectAndWait | selectAndWait(selectLocator, optionLocator) Generated from select(selectLocator, optionLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu*optionLocator - an option locator (a label by default) |
242 | selectFrame | selectFrame(locator) Arguments: *locator - an element locator identifying a frame or iframe |
243 | selectPopUp | selectPopUp(windowID) Arguments: *windowID - an identifier for the popup window, which can take on a number of different meanings |
244 | selectPopUpAndWait | selectPopUpAndWait(windowID) Generated from selectPopUp(windowID) Arguments: *windowID - an identifier for the popup window, which can take on a number of different meanings |
245 | selectWindow | selectWindow(windowID) Arguments: *windowID - the JavaScript window ID of the window to select |
246 | sendKeys | sendKeys(locator, value) Arguments: *locator - an element locator*value - the value to type |
247 | sendKeysAndWait | sendKeysAndWait(locator, value) Generated from sendKeys(locator, value) Arguments: *locator - an element locator*value - the value to type |
248 | setCursorPosition | setCursorPosition(locator, position) Arguments: *locator - an element locator pointing to an input element or textarea*position - the numerical position of the cursor in the field; position should be 0 to move the position to the beginning of the |
249 | setCursorPositionAndWait | setCursorPositionAndWait(locator, position) Generated from setCursorPosition(locator, position) Arguments: *locator - an element locator pointing to an input element or textarea*position - the numerical position of the cursor in the field; positio |
250 | setMouseSpeed | setMouseSpeed(pixels) Arguments: *pixels - the number of pixels between "mousemove" events |
251 | setMouseSpeedAndWait | setMouseSpeedAndWait(pixels) Generated from setMouseSpeed(pixels) Arguments: *pixels - the number of pixels between "mousemove" events |
252 | setSpeed | setSpeed(value) Arguments: *value - the number of milliseconds to pause after operation |
253 | setSpeedAndWait | setSpeedAndWait(value) Generated from setSpeed(value) Arguments: *value - the number of milliseconds to pause after operation |
254 | setTimeout | setTimeout(timeout) Arguments: *timeout - a timeout in milliseconds, after which the action will return with an error |
255 | shiftKeyDown | shiftKeyDown() |
256 | shiftKeyDownAndWait | shiftKeyDownAndWait() Generated from shiftKeyDown() |
257 | shiftKeyUp | shiftKeyUp() |
258 | shiftKeyUpAndWait | shiftKeyUpAndWait() Generated from shiftKeyUp() |
259 | showElement | showElement |
260 | showElementAndWait | showElementAndWait |
261 | store | store(expression, variableName) Arguments: *expression - the value to store*variableName - the name of a variable in which the result is to be stored. |
262 | storeAlert | storeAlert(variableName) Generated from getAlert(). Returns: The message of the most recent JavaScript alert |
263 | storeAlertPresent | storeAlertPresent(variableName) Generated from isAlertPresent(). Returns: true if there is an alert |
264 | storeAllButtons | storeAllButtons(variableName) Generated from getAllButtons(). Returns: the IDs of all buttons on the page |
265 | storeAllFields | storeAllFields(variableName) Generated from getAllFields(). Returns: the IDs of all field on the page |
266 | storeAllLinks | storeAllLinks(variableName) Generated from getAllLinks(). Returns: the IDs of all links on the page |
267 | storeAllWindowIds | storeAllWindowIds(variableName) Generated from getAllWindowIds(). Returns: Array of identifiers of all windows that the browser knows about. |
268 | storeAllWindowNames | storeAllWindowNames(variableName) Generated from getAllWindowNames(). Returns: Array of names of all windows that the browser knows about. |
269 | storeAllWindowTitles | storeAllWindowTitles(variableName) Generated from getAllWindowTitles(). Returns: Array of titles of all windows that the browser knows about. |
270 | storeAndWait | storeAndWait(expression, variableName) Generated from store(expression, variableName) Arguments: *expression - the value to store*variableName - the name of a variable in which the result is to be stored. |
271 | storeAttribute | storeAttribute(attributeLocator, variableName) Generated from getAttribute(attributeLocator) Arguments: *attributeLocator - an element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar" . Returns: the value of the specifie |
272 | storeAttributeFromAllWindows | storeAttributeFromAllWindows(attributeName, variableName) Generated from getAttributeFromAllWindows(attributeName) Arguments: *attributeName - name of an attribute on the windows .Returns: the set of values of this attribute from all known windows. |
273 | storeBodyText | storeBodyText(variableName) Generated from getBodyText(). Returns: the entire text of the page |
274 | storeChecked | storeChecked(locator, variableName) Generated from isChecked(locator) Arguments: *locator - an element locator pointing to a checkbox or radio button .Returns: true if the checkbox is checked, false otherwise |
275 | storeConfirmation | storeConfirmation(variableName) Generated from getConfirmation(). Returns: the message of the most recent JavaScript confirmation dialog |
276 | storeConfirmationPresent | storeConfirmationPresent(variableName) Generated from isConfirmationPresent(). Returns: true if there is a pending confirmation |
277 | storeCookie | storeCookie(variableName) Generated from getCookie(). Returns: all cookies of the current page under test |
278 | storeCookieByName | storeCookieByName(name, variableName) Generated from getCookieByName(name) Arguments: *name - the name of the cookie . Returns: the value of the cookie |
279 | storeCookiePresent | storeCookiePresent(name, variableName) Generated from isCookiePresent(name) Arguments: *name - the name of the cookie . Returns: true if a cookie with the specified name is present, or false otherwise. |
280 | storeCssCount | storeCssCount(css, variableName) Generated from getCssCount(css) Arguments: *css - the css selector to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the specified css sel |
281 | storeCursorPosition | storeCursorPosition(locator, variableName) Generated from getCursorPosition(locator) Arguments: *locator - an element locator pointing to an input element or textarea .Returns: the numerical position of the cursor in the field |
282 | storeEditable | storeEditable(locator, variableName) Generated from isEditable(locator) Arguments: *locator - an element locator .Returns: true if the input element is editable, false otherwise |
283 | storeElementHeight | storeElementHeight(locator, variableName) Generated from getElementHeight(locator) Arguments: *locator - an element locator pointing to an element .Returns: height of an element in pixels |
284 | storeElementIndex | storeElementIndex(locator, variableName) Generated from getElementIndex(locator) Arguments: *locator - an element locator pointing to an element .Returns: of relative index of the element to its parent (starting from 0) |
285 | storeElementPositionLeft | storeElementPositionLeft(locator, variableName) Generated from getElementPositionLeft(locator) Arguments: *locator - an element locator pointing to an element OR an element itself .Returns: of pixels from the edge of the frame. |
286 | storeElementPositionTop | storeElementPositionTop(locator, variableName) Generated from getElementPositionTop(locator) Arguments: *locator - an element locator pointing to an element OR an element itself .Returns: of pixels from the edge of the frame. |
287 | storeElementPresent | storeElementPresent(locator, variableName) Generated from isElementPresent(locator) Arguments: *locator - an element locator . Returns: true if the element is present, false otherwise |
288 | storeElementWidth | storeElementWidth(locator, variableName) Generated from getElementWidth(locator) Arguments: *locator - an element locator pointing to an element . Returns: width of an element in pixels |
289 | storeEval | storeEval(script, variableName) Generated from getEval(script) Arguments: *script - the JavaScript snippet to run .Returns: the results of evaluating the snippet |
290 | storeExpression | storeExpression(expression, variableName) Generated from getExpression(expression) Arguments: *expression - the value to return .Returns: the value passed in |
291 | storeHtmlSource | storeHtmlSource(variableName) Generated from getHtmlSource(). Returns: the entire HTML source |
292 | storeLocation | storeLocation(variableName) Generated from getLocation(). Returns: the absolute URL of the current page |
293 | storeMouseSpeed | storeMouseSpeed(variableName) Generated from getMouseSpeed(). Returns: the number of pixels between "mousemove" events during dragAndDrop commands (default=10) |
294 | storeOrdered | storeOrdered(locator1, locator2, variableName) Generated from isOrdered(locator1, locator2) Arguments: *locator1 - an element locator pointing to the first element*locator2 - an element locator pointing to the second element . Returns: true |
295 | storePrompt | storePrompt(variableName) Generated from getPrompt(). Returns: the message of the most recent JavaScript question prompt |
296 | storePromptPresent | storePromptPresent(variableName) Generated from isPromptPresent(). Returns: true if there is a pending prompt |
297 | storeSelectOptions | storeSelectOptions(selectLocator, variableName) Generated from getSelectOptions(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all option labels in the specified select drop-down |
298 | storeSelectedId | storeSelectedId(selectLocator, variableName) Generated from getSelectedId(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option ID in the specified select drop-down |
299 | storeSelectedIds | storeSelectedIds(selectLocator, variableName) Generated from getSelectedIds(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option IDs in the specified select drop-down |
300 | storeSelectedIndex | storeSelectedIndex(selectLocator, variableName) Generated from getSelectedIndex(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option index in the specified select drop-down |
301 | storeSelectedIndexes | storeSelectedIndexes(selectLocator, variableName) Generated from getSelectedIndexes(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu . Returns: an array of all selected option indexes in the specified selec |
302 | storeSelectedLabel | storeSelectedLabel(selectLocator, variableName) Generated from getSelectedLabel(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu . Returns: the selected option label in the specified select drop-down |
303 | storeSelectedLabels | storeSelectedLabels(selectLocator, variableName) Generated from getSelectedLabels(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option labels in the specified select d |
304 | storeSelectedValue | storeSelectedValue(selectLocator, variableName) Generated from getSelectedValue(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option value in the specified select drop-down |
305 | storeSelectedValues | storeSelectedValues(selectLocator, variableName) Generated from getSelectedValues(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option values in the specified select d |
306 | storeSomethingSelected | storeSomethingSelected(selectLocator, variableName) Generated from isSomethingSelected(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: true if some option has been selected, false otherwise |
307 | storeSpeed | storeSpeed(variableName) Generated from getSpeed(). Returns: the execution speed in milliseconds. |
308 | storeTable | storeTable(tableCellAddress, variableName) Generated from getTable(tableCellAddress) Arguments: *tableCellAddress - a cell address, e.g. "foo.1.4" .Returns: the text from the specified cell |
309 | storeText | storeText(locator, variableName) Generated from getText(locator) Arguments: *locator - an element locatorReturns: the text of the element |
310 | storeTextAndWait | storeTextAndWait(locator, variableName) Generated from getText(locator) Arguments: *locator - an element locatorReturns: the text of the element |
311 | storeTextPresent | storeTextPresent(pattern, variableName) This command is deprecated. Use the storeText command with an element locator instead. Generated from isTextPresent(pattern) Arguments: *pattern - a pattern to match with the text of the page .Returns: true i |
312 | storeTitle | storeTitle(variableName) Generated from getTitle(). Returns: the title of the current page |
313 | storeTitleAndWait | storeTitleAndWait(variableName) Generated from getTitle(). Returns: the title of the current page |
314 | storeValue | storeValue(locator, variableName) Generated from getValue(locator) Arguments: *locator - an element locatorReturns: the element value, or "on/off" for checkbox/radio elements |
315 | storeVisible | storeVisible(locator, variableName) Generated from isVisible(locator) Arguments: *locator - an element locatorReturns: true if the specified element is visible, false otherwise |
316 | storeWhetherThisFrameMatchFrameExpression | storeWhetherThisFrameMatchFrameExpression(currentFrameString, target, variableName) Generated from getWhetherThisFrameMatchFrameExpression(currentFrameString, target) Arguments: *currentFrameString - starting frame*target - new frame (which might be |
317 | storeWhetherThisWindowMatchWindowExpression | storeWhetherThisWindowMatchWindowExpression(currentWindowString, target, variableName) Generated from getWhetherThisWindowMatchWindowExpression(currentWindowString, target) Arguments: *currentWindowString - starting window*target - new window (which |
318 | storeXpathCount | storeXpathCount(xpath, variableName) Generated from getXpathCount(xpath) Arguments: *xpath - the xpath expression to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the spe |
319 | submit | submit(formLocator) Arguments: *formLocator - an element locator for the form you want to submit |
320 | submitAndWait | submitAndWait(formLocator) Generated from submit(formLocator) Arguments: *formLocator - an element locator for the form you want to submit |
321 | type | type(locator, value) Arguments: *locator - an element locator*value - the value to type |
322 | typeAndWait | typeAndWait(locator, value) Generated from type(locator, value) Arguments: *locator - an element locator*value - the value to type |
323 | typeKeys | typeKeys(locator, value) This command is deprecated. Use the sendKeys command instead. Arguments: *locator - an element locator*value - the value to type |
324 | typeKeysAndWait | typeKeysAndWait(locator, value) This command is deprecated. Use the sendKeysAndWait command instead. Generated from typeKeys(locator, value) Arguments: *locator - an element locator*value - the value to type |
325 | uncheck | uncheck(locator) Arguments: *locator - an element locator |
326 | uncheckAndWait | uncheckAndWait(locator) Generated from uncheck(locator) Arguments: *locator - an element locator |
327 | useXpathLibrary | useXpathLibrary(libraryName) Arguments: *libraryName - name of the desired library Only the following three can be chosen: "ajaxslt" - Google's library, "javascript-xpath" - Cybozu Labs' faster library, "default" - The defau |
328 | useXpathLibraryAndWait | useXpathLibraryAndWait(libraryName) Generated from useXpathLibrary(libraryName) Arguments: *libraryName - name of the desired library Only the following three can be chosen: "ajaxslt" - Google's library, "javascript-xpath" - Cybozu La |
329 | verifyAlert | verifyAlert(pattern) Generated from getAlert(). Returns: The message of the most recent JavaScript alert |
330 | verifyAlertNotPresent | verifyAlertNotPresent() Generated from isAlertPresent(). Returns: true if there is an alert |
331 | verifyAlertPresent | verifyAlertPresent() Generated from isAlertPresent(). Returns: true if there is an alert |
332 | verifyAllButtons | verifyAllButtons(pattern) Generated from getAllButtons(). Returns: the IDs of all buttons on the page |
333 | verifyAllFields | verifyAllFields(pattern) Generated from getAllFields(). Returns: the IDs of all field on the page |
334 | verifyAllLinks | verifyAllLinks(pattern) Generated from getAllLinks(). Returns: the IDs of all links on the page |
335 | verifyAllWindowIds | verifyAllWindowIds(pattern) Generated from getAllWindowIds(). Returns: Array of identifiers of all windows that the browser knows about. |
336 | verifyAllWindowNames | verifyAllWindowNames(pattern) Generated from getAllWindowNames(). Returns: Array of names of all windows that the browser knows about. |
337 | verifyAllWindowTitles | verifyAllWindowTitles(pattern) Generated from getAllWindowTitles(). Returns: Array of titles of all windows that the browser knows about. |
338 | verifyAttribute | verifyAttribute(attributeLocator, pattern) Generated from getAttribute(attributeLocator) Arguments: *attributeLocator - an element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar" .Returns: the value of the specified a |
339 | verifyAttributeFromAllWindows | verifyAttributeFromAllWindows(attributeName, pattern) Generated from getAttributeFromAllWindows(attributeName) Arguments: *attributeName - name of an attribute on the windows.Returns: the set of values of this attribute from all known windows. |
340 | verifyBodyText | verifyBodyText(pattern) Generated from getBodyText(). Returns: the entire text of the page |
341 | verifyChecked | verifyChecked(locator) Generated from isChecked(locator) Arguments: *locator - an element locator pointing to a checkbox or radio button .Returns: true if the checkbox is checked, false otherwise |
342 | verifyConfirmation | verifyConfirmation(pattern) Generated from getConfirmation(). Returns: the message of the most recent JavaScript confirmation dialog |
343 | verifyConfirmationNotPresent | verifyConfirmationNotPresent() Generated from isConfirmationPresent(). Returns: true if there is a pending confirmation |
344 | verifyConfirmationPresent | verifyConfirmationPresent() Generated from isConfirmationPresent(). Returns: true if there is a pending confirmation |
345 | verifyCookie | verifyCookie(pattern) Generated from getCookie(). Returns: all cookies of the current page under test |
346 | verifyCookieByName | verifyCookieByName(name, pattern) Generated from getCookieByName(name) Arguments: *name - the name of the cookie . Returns: the value of the cookie |
347 | verifyCookieNotPresent | verifyCookieNotPresent(name) Generated from isCookiePresent(name) Arguments: *name - the name of the cookie . Returns: true if a cookie with the specified name is present, or false otherwise. |
348 | verifyCookiePresent | verifyCookiePresent(name) Generated from isCookiePresent(name) Arguments: *name - the name of the cookie .Returns: true if a cookie with the specified name is present, or false otherwise. |
349 | verifyCssCount | verifyCssCount(css, pattern) Generated from getCssCount(css) Arguments: *css - the css selector to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the specified css select |
350 | verifyCursorPosition | verifyCursorPosition(locator, pattern) Generated from getCursorPosition(locator) Arguments: *locator - an element locator pointing to an input element or textarea .Returns: the numerical position of the cursor in the field |
351 | verifyEditable | verifyEditable(locator) Generated from isEditable(locator) Arguments: *locator - an element locatorReturns: true if the input element is editable, false otherwise |
352 | verifyElementHeight | verifyElementHeight(locator, pattern) Generated from getElementHeight(locator) Arguments: *locator - an element locator pointing to an element . Returns: height of an element in pixels |
353 | verifyElementIndex | verifyElementIndex(locator, pattern) Generated from getElementIndex(locator) Arguments: *locator - an element locator pointing to an element . Returns: of relative index of the element to its parent (starting from 0) |
354 | verifyElementNotPresent | verifyElementNotPresent(locator) Generated from isElementPresent(locator) Arguments: *locator - an element locatorReturns: true if the element is not present, false otherwise |
355 | verifyElementPositionLeft | verifyElementPositionLeft(locator, pattern) Generated from getElementPositionLeft(locator) Arguments: *locator - an element locator pointing to an element OR an element itself .Returns: of pixels from the edge of the frame. |
356 | verifyElementPositionTop | verifyElementPositionTop(locator, pattern) Generated from getElementPositionTop(locator) Arguments: *locator - an element locator pointing to an element OR an element itself .Returns: of pixels from the edge of the frame. |
357 | verifyElementPresent | verifyElementPresent(locator) Generated from isElementPresent(locator) Arguments: *locator - an element locator Returns: true if the element is present, false otherwise |
358 | verifyElementWidth | verifyElementWidth(locator, pattern) Generated from getElementWidth(locator) Arguments: *locator - an element locator pointing to an element .Returns: width of an element in pixels |
359 | verifyEval | verifyEval(script, pattern) Generated from getEval(script) Arguments: *script - the JavaScript snippet to run .Returns: the results of evaluating the snippet |
360 | verifyExpression | verifyExpression(expression, pattern) Generated from getExpression(expression) Arguments: *expression - the value to return .Returns: the value passed in |
361 | verifyHtmlSource | verifyHtmlSource(pattern) Generated from getHtmlSource(). Returns: the entire HTML source |
362 | verifyLocation | verifyLocation(pattern) Generated from getLocation(). Returns: the absolute URL of the current page |
363 | verifyMouseSpeed | verifyMouseSpeed(pattern) Generated from getMouseSpeed(). Returns: the number of pixels between "mousemove" events during dragAndDrop commands (default=10) |
364 | verifyNotAlert | verifyNotAlert(pattern) Generated from getAlert(). Returns: The message of the most recent JavaScript alert |
365 | verifyNotAllButtons | verifyNotAllButtons(pattern) Generated from getAllButtons(). Returns: the IDs of all buttons on the page |
366 | verifyNotAllFields | verifyNotAllFields(pattern) Generated from getAllFields(). Returns: the IDs of all field on the page |
367 | verifyNotAllLinks | verifyNotAllLinks(pattern) Generated from getAllLinks(). Returns: the IDs of all links on the page |
368 | verifyNotAllWindowIds | verifyNotAllWindowIds(pattern) Generated from getAllWindowIds(). Returns: Array of identifiers of all windows that the browser knows about. |
369 | verifyNotAllWindowNames | verifyNotAllWindowNames(pattern) Generated from getAllWindowNames(). Returns: Array of names of all windows that the browser knows about. |
370 | verifyNotAllWindowTitles | verifyNotAllWindowTitles(pattern) Generated from getAllWindowTitles(). Returns: Array of titles of all windows that the browser knows about. |
371 | verifyNotAttribute | verifyNotAttribute(attributeLocator, pattern) Generated from getAttribute(attributeLocator) Arguments: *attributeLocator - an element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar" .Returns: the value of the specifie |
372 | verifyNotAttributeFromAllWindows | verifyNotAttributeFromAllWindows(attributeName, pattern) Generated from getAttributeFromAllWindows(attributeName) Arguments: *attributeName - name of an attribute on the windows .Returns: the set of values of this attribute from all known windows. |
373 | verifyNotBodyText | verifyNotBodyText(pattern) Generated from getBodyText(). Returns: the entire text of the page |
374 | verifyNotChecked | verifyNotChecked(locator) Generated from isChecked(locator) Arguments: *locator - an element locator pointing to a checkbox or radio button .Returns: true if the checkbox is checked, false otherwise |
375 | verifyNotConfirmation | verifyNotConfirmation(pattern) Generated from getConfirmation(). Returns: the message of the most recent JavaScript confirmation dialog |
376 | verifyNotCookie | verifyNotCookie(pattern) Generated from getCookie(). Returns: all cookies of the current page under test |
377 | verifyNotCookieByName | verifyNotCookieByName(name, pattern) Generated from getCookieByName(name) Arguments: *name - the name of the cookie .Returns: the value of the cookie |
378 | verifyNotCssCount | verifyNotCssCount(css, pattern) Generated from getCssCount(css) Arguments: *css - the css selector to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the specified css sel |
379 | verifyNotCursorPosition | verifyNotCursorPosition(locator, pattern) Generated from getCursorPosition(locator) Arguments: *locator - an element locator pointing to an input element or textarea .Returns: the numerical position of the cursor in the field |
380 | verifyNotEditable | verifyNotEditable(locator) Generated from isEditable(locator) Arguments: *locator - an element locatorReturns: true if the input element is editable, false otherwise |
381 | verifyNotElementHeight | verifyNotElementHeight(locator, pattern) Generated from getElementHeight(locator) Arguments: *locator - an element locator pointing to an element .Returns: height of an element in pixels |
382 | verifyNotElementIndex | verifyNotElementIndex(locator, pattern) Generated from getElementIndex(locator) Arguments: *locator - an element locator pointing to an element .Returns: of relative index of the element to its parent (starting from 0) |
383 | verifyNotElementPositionLeft | verifyNotElementPositionLeft(locator, pattern) Generated from getElementPositionLeft(locator) Arguments: *locator - an element locator pointing to an element OR an element itself .Returns: of pixels from the edge of the frame. |
384 | verifyNotElementPositionTop | verifyNotElementPositionTop(locator, pattern) Generated from getElementPositionTop(locator) Arguments: *locator - an element locator pointing to an element OR an element itself .Returns: of pixels from the edge of the frame. |
385 | verifyNotElementWidth | verifyNotElementWidth(locator, pattern) Generated from getElementWidth(locator) Arguments: *locator - an element locator pointing to an element .Returns: width of an element in pixels |
386 | verifyNotEval | verifyNotEval(script, pattern) Generated from getEval(script) Arguments: *script - the JavaScript snippet to run .Returns: the results of evaluating the snippet |
387 | verifyNotExpression | verifyNotExpression(expression, pattern) Generated from getExpression(expression) Arguments: *expression - the value to return .Returns: the value passed in |
388 | verifyNotHtmlSource | verifyNotHtmlSource(pattern) Generated from getHtmlSource(). Returns: the entire HTML source |
389 | verifyNotLocation | verifyNotLocation(pattern) Generated from getLocation(). Returns: the absolute URL of the current page |
390 | verifyNotMouseSpeed | verifyNotMouseSpeed(pattern) Generated from getMouseSpeed(). Returns: the number of pixels between "mousemove" events during dragAndDrop commands (default=10) |
391 | verifyNotOrdered | verifyNotOrdered(locator1, locator2) Generated from isOrdered(locator1, locator2) Arguments: *locator1 - an element locator pointing to the first element*locator2 - an element locator pointing to the second element . Returns: true if elemen |
392 | verifyNotPrompt | verifyNotPrompt(pattern) Generated from getPrompt(). Returns: the message of the most recent JavaScript question prompt |
393 | verifyNotSelectOptions | verifyNotSelectOptions(selectLocator, pattern) Generated from getSelectOptions(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all option labels in the specified select drop-down |
394 | verifyNotSelectedId | verifyNotSelectedId(selectLocator, pattern) Generated from getSelectedId(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option ID in the specified select drop-down |
395 | verifyNotSelectedIds | verifyNotSelectedIds(selectLocator, pattern) Generated from getSelectedIds(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option IDs in the specified select drop-down |
396 | verifyNotSelectedIndex | verifyNotSelectedIndex(selectLocator, pattern) Generated from getSelectedIndex(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option index in the specified select drop-down |
397 | verifyNotSelectedIndexes | verifyNotSelectedIndexes(selectLocator, pattern) Generated from getSelectedIndexes(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option indexes in the specified select |
398 | verifyNotSelectedLabel | verifyNotSelectedLabel(selectLocator, pattern) Generated from getSelectedLabel(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option label in the specified select drop-down |
399 | verifyNotSelectedLabels | verifyNotSelectedLabels(selectLocator, pattern) Generated from getSelectedLabels(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option labels in the specified select dr |
400 | verifyNotSelectedValue | verifyNotSelectedValue(selectLocator, pattern) Generated from getSelectedValue(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option value in the specified select drop-down |
401 | verifyNotSelectedValues | verifyNotSelectedValues(selectLocator, pattern) Generated from getSelectedValues(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option values in the specified select dr |
402 | verifyNotSomethingSelected | verifyNotSomethingSelected(selectLocator) Generated from isSomethingSelected(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: true if some option has been selected, false otherwise |
403 | verifyNotSpeed | verifyNotSpeed(pattern) Generated from getSpeed(). Returns: the execution speed in milliseconds. |
404 | verifyNotTable | verifyNotTable(tableCellAddress, pattern) Generated from getTable(tableCellAddress) Arguments: *tableCellAddress - a cell address, e.g. "foo.1.4" . Returns: the text from the specified cell |
405 | verifyNotText | verifyNotText(locator, pattern) Generated from getText(locator) Arguments: *locator - an element locator . Returns: the text of the element |
406 | verifyNotTitle | verifyNotTitle(pattern) Generated from getTitle(). Returns: the title of the current page |
407 | verifyNotValue | verifyNotValue(locator, pattern) Generated from getValue(locator) Arguments: *locator - an element locator . Returns: the element value, or "on/off" for checkbox/radio elements |
408 | verifyNotVisible | verifyNotVisible(locator) Generated from isVisible(locator) Arguments: *locator - an element locator . Returns: true if the specified element is visible, false otherwise |
409 | verifyNotWhetherThisFrameMatchFrameExpression | verifyNotWhetherThisFrameMatchFrameExpression(currentFrameString, target, pattern) Generated from getWhetherThisFrameMatchFrameExpression(currentFrameString, target) Arguments: *currentFrameString - starting frame*target - new frame (which might be r |
410 | verifyNotWhetherThisWindowMatchWindowExpression | verifyNotWhetherThisWindowMatchWindowExpression(currentWindowString, target, pattern) Generated from getWhetherThisWindowMatchWindowExpression(currentWindowString, target) Arguments: *currentWindowString - starting window*target - new window (which m |
411 | verifyNotXpathCount | verifyNotXpathCount(xpath, pattern) Generated from getXpathCount(xpath) Arguments: *xpath - the xpath expression to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the spe |
412 | verifyOrdered | verifyOrdered(locator1, locator2) Generated from isOrdered(locator1, locator2) Arguments: *locator1 - an element locator pointing to the first element*locator2 - an element locator pointing to the second element . Returns: true if element1 |
413 | verifyPrompt | verifyPrompt(pattern) Generated from getPrompt(). Returns: the message of the most recent JavaScript question prompt |
414 | verifyPromptNotPresent | verifyPromptNotPresent() Generated from isPromptPresent(). Returns: true if there is a pending prompt |
415 | verifyPromptPresent | verifyPromptPresent() Generated from isPromptPresent(). Returns: true if there is a pending prompt |
416 | verifySelectOptions | verifySelectOptions(selectLocator, pattern) Generated from getSelectOptions(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all option labels in the specified select drop-down |
417 | verifySelectedId | verifySelectedId(selectLocator, pattern) Generated from getSelectedId(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option ID in the specified select drop-down |
418 | verifySelectedIds | verifySelectedIds(selectLocator, pattern) Generated from getSelectedIds(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option IDs in the specified select drop-down |
419 | verifySelectedIndex | verifySelectedIndex(selectLocator, pattern) Generated from getSelectedIndex(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option index in the specified select drop-down |
420 | verifySelectedIndexes | verifySelectedIndexes(selectLocator, pattern) Generated from getSelectedIndexes(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option indexes in the specified select dr |
421 | verifySelectedLabel | verifySelectedLabel(selectLocator, pattern) Generated from getSelectedLabel(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu . Returns: the selected option label in the specified select drop-down |
422 | verifySelectedLabels | verifySelectedLabels(selectLocator, pattern) Generated from getSelectedLabels(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option labels in the specified select drop- |
423 | verifySelectedValue | verifySelectedValue(selectLocator, pattern) Generated from getSelectedValue(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option value in the specified select drop-down |
424 | verifySelectedValues | verifySelectedValues(selectLocator, pattern) Generated from getSelectedValues(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option values in the specified select drop- |
425 | verifySomethingSelected | verifySomethingSelected(selectLocator) Generated from isSomethingSelected(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: true if some option has been selected, false otherwise |
426 | verifySpeed | verifySpeed(pattern) Generated from getSpeed(). Returns: the execution speed in milliseconds. |
427 | verifyTable | verifyTable(tableCellAddress, pattern) Generated from getTable(tableCellAddress) Arguments: *tableCellAddress - a cell address, e.g. "foo.1.4" .Returns: the text from the specified cell |
428 | verifyText | verifyText(locator, pattern) Generated from getText(locator) Arguments: *locator - an element locatorReturns: the text of the element |
429 | verifyTextAndWait | verifyTextAndWait(locator, pattern) Generated from getText(locator) Arguments: *locator - an element locator Returns: the text of the element |
430 | verifyTextNotPresent | verifyTextNotPresent(pattern) This command is deprecated. Use the verifyNotText command with an element locator instead. Generated from isTextPresent(pattern) Arguments: *pattern - a pattern to match with the text of the page .Returns: true if the |
431 | verifyTextPresent | verifyTextPresent(pattern) This command is deprecated. Use the verifyText command with an element locator instead. Generated from isTextPresent(pattern) Arguments: *pattern - a pattern to match with the text of the page .Returns: true if the patter |
432 | verifyTitle | |
433 | verifyTitleAndWait | verifyTitleAndWait(pattern) Generated from getTitle(). Returns: the title of the current page |
434 | verifyValue | verifyValue(locator, pattern) Generated from getValue(locator) Arguments: *locator - an element locatorReturns: the element value, or "on/off" for checkbox/radio elements |
435 | verifyVisible | verifyVisible(locator) Generated from isVisible(locator) Arguments: *locator - an element locatorReturns: true if the specified element is visible, false otherwise |
436 | verifyWhetherThisFrameMatchFrameExpression | verifyWhetherThisFrameMatchFrameExpression(currentFrameString, target, pattern) Generated from getWhetherThisFrameMatchFrameExpression(currentFrameString, target) Arguments: *currentFrameString - starting frame*target - new frame (which might be rela |
437 | verifyWhetherThisWindowMatchWindowExpression | verifyWhetherThisWindowMatchWindowExpression(currentWindowString, target, pattern) Generated from getWhetherThisWindowMatchWindowExpression(currentWindowString, target) Arguments: *currentWindowString - starting window*target - new window (which migh |
438 | verifyXpathCount | verifyXpathCount(xpath, pattern) Generated from getXpathCount(xpath) Arguments: *xpath - the xpath expression to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the specif |
439 | waitForAlert | waitForAlert(pattern) Generated from getAlert(). Returns: The message of the most recent JavaScript alert |
440 | waitForAlertNotPresent | waitForAlertNotPresent() Generated from isAlertPresent(). Returns: true if there is an alert |
441 | waitForAlertPresent | waitForAlertPresent() Generated from isAlertPresent(). Returns: true if there is an alert |
442 | waitForAllButtons | waitForAllButtons(pattern) Generated from getAllButtons(). Returns: the IDs of all buttons on the page |
443 | waitForAllFields | waitForAllFields(pattern) Generated from getAllFields(). Returns: the IDs of all field on the page |
444 | waitForAllLinks | waitForAllLinks(pattern) Generated from getAllLinks(). Returns: the IDs of all links on the page |
445 | waitForAllWindowIds | waitForAllWindowIds(pattern) Generated from getAllWindowIds(). Returns: Array of identifiers of all windows that the browser knows about. |
446 | waitForAllWindowNames | waitForAllWindowNames(pattern) Generated from getAllWindowNames(). Returns: Array of names of all windows that the browser knows about. |
447 | waitForAllWindowTitles | waitForAllWindowTitles(pattern) Generated from getAllWindowTitles(). Returns: Array of titles of all windows that the browser knows about. |
448 | waitForAttribute | waitForAttribute(attributeLocator, pattern) Generated from getAttribute(attributeLocator) Arguments: *attributeLocator - an element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar" .Returns: the value of the specified |
449 | waitForAttributeFromAllWindows | waitForAttributeFromAllWindows(attributeName, pattern) Generated from getAttributeFromAllWindows(attributeName) Arguments: *attributeName - name of an attribute on the windows .Returns: the set of values of this attribute from all known windows. |
450 | waitForBodyText | waitForBodyText(pattern) Generated from getBodyText(). Returns: the entire text of the page |
451 | waitForChecked | waitForChecked(locator) Generated from isChecked(locator) Arguments: *locator - an element locator pointing to a checkbox or radio button .Returns: true if the checkbox is checked, false otherwise |
452 | waitForCondition | waitForCondition(script, timeout) Arguments: *script - the JavaScript snippet to run*timeout - a timeout in milliseconds, after which this command will return with an error |
453 | waitForConfirmation | waitForConfirmation(pattern) Generated from getConfirmation(). Returns: the message of the most recent JavaScript confirmation dialog |
454 | waitForConfirmationNotPresent | waitForConfirmationNotPresent() Generated from isConfirmationPresent(). Returns: true if there is a pending confirmation |
455 | waitForConfirmationPresent | waitForConfirmationPresent() Generated from isConfirmationPresent(). Returns: true if there is a pending confirmation |
456 | waitForCookie | waitForCookie(pattern) Generated from getCookie(). Returns: all cookies of the current page under test |
457 | waitForCookieByName | waitForCookieByName(name, pattern) Generated from getCookieByName(name) Arguments: *name - the name of the cookie . Returns: the value of the cookie |
458 | waitForCookieNotPresent | waitForCookieNotPresent(name) Generated from isCookiePresent(name) Arguments: *name - the name of the cookie . Returns: true if a cookie with the specified name is present, or false otherwise. |
459 | waitForCookiePresent | waitForCookiePresent(name) Generated from isCookiePresent(name) Arguments: *name - the name of the cookie . Returns: true if a cookie with the specified name is present, or false otherwise. |
460 | waitForCssCount | waitForCssCount(css, pattern) Generated from getCssCount(css) Arguments: *css - the css selector to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you. . Returns: the number of nodes that match the specified css selecto |
461 | waitForCursorPosition | waitForCursorPosition(locator, pattern) Generated from getCursorPosition(locator) Arguments: *locator - an element locator pointing to an input element or textarea . Returns: the numerical position of the cursor in the field |
462 | waitForEditable | waitForEditable(locator) Generated from isEditable(locator) Arguments: *locator - an element locator . Returns: true if the input element is editable, false otherwise |
463 | waitForElementHeight | waitForElementHeight(locator, pattern) Generated from getElementHeight(locator) Arguments: *locator - an element locator pointing to an element . Returns: height of an element in pixels |
464 | waitForElementIndex | waitForElementIndex(locator, pattern) Generated from getElementIndex(locator) Arguments: *locator - an element locator pointing to an element . Returns: of relative index of the element to its parent (starting from 0) |
465 | waitForElementNotPresent | waitForElementNotPresent(locator) Generated from isElementPresent(locator) Arguments: *locator - an element locator . Returns: true if the element is not present, false otherwise |
466 | waitForElementPositionLeft | waitForElementPositionLeft(locator, pattern) Generated from getElementPositionLeft(locator) Arguments: *locator - an element locator pointing to an element OR an element itself . Returns: of pixels from the edge of the frame. |
467 | waitForElementPositionTop | waitForElementPositionTop(locator, pattern) Generated from getElementPositionTop(locator) Arguments: *locator - an element locator pointing to an element OR an element itself . Returns: of pixels from the edge of the frame. |
468 | waitForElementPresent | waitForElementPresent(locator) Generated from isElementPresent(locator) Arguments: *locator - an element locator . Returns: true if the element is present, false otherwise |
469 | waitForElementWidth | waitForElementWidth(locator, pattern) Generated from getElementWidth(locator) Arguments: *locator - an element locator pointing to an element . Returns: width of an element in pixels |
470 | waitForEval | waitForEval(script, pattern) Generated from getEval(script) Arguments: *script - the JavaScript snippet to run .Returns: the results of evaluating the snippet |
471 | waitForExpression | waitForExpression(expression, pattern) Generated from getExpression(expression) Arguments: *expression - the value to return . Returns: the value passed in |
472 | waitForFrameToLoad | waitForFrameToLoad(frameAddress, timeout) Arguments: *frameAddress - FrameAddress from the server side*timeout - a timeout in milliseconds, after which this command will return with an error |
473 | waitForHtmlSource | waitForHtmlSource(pattern) Generated from getHtmlSource(). Returns: the entire HTML source |
474 | waitForLocation | waitForLocation(pattern) Generated from getLocation(). Returns: the absolute URL of the current page |
475 | waitForMouseSpeed | waitForMouseSpeed(pattern) Generated from getMouseSpeed(). Returns: the number of pixels between "mousemove" events during dragAndDrop commands (default=10) |
476 | waitForNotAlert | waitForNotAlert(pattern) Generated from getAlert(). Returns: The message of the most recent JavaScript alert |
477 | waitForNotAllButtons | waitForNotAllButtons(pattern) Generated from getAllButtons(). Returns: the IDs of all buttons on the page |
478 | waitForNotAllFields | waitForNotAllFields(pattern) Generated from getAllFields(). Returns: the IDs of all field on the page |
479 | waitForNotAllLinks | waitForNotAllLinks(pattern) Generated from getAllLinks(). Returns: the IDs of all links on the page |
480 | waitForNotAllWindowIds | waitForNotAllWindowIds(pattern) Generated from getAllWindowIds(). Returns: Array of identifiers of all windows that the browser knows about. |
481 | waitForNotAllWindowNames | waitForNotAllWindowNames(pattern) Generated from getAllWindowNames(). Returns: Array of names of all windows that the browser knows about. |
482 | waitForNotAllWindowTitles | waitForNotAllWindowTitles(pattern) Generated from getAllWindowTitles(). Returns: Array of titles of all windows that the browser knows about. |
483 | waitForNotAttribute | waitForNotAttribute(attributeLocator, pattern) Generated from getAttribute(attributeLocator) Arguments: *attributeLocator - an element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar" .Returns: the value of the specifi |
484 | waitForNotAttributeFromAllWindows | waitForNotAttributeFromAllWindows(attributeName, pattern) Generated from getAttributeFromAllWindows(attributeName) Arguments: *attributeName - name of an attribute on the windows .Returns: the set of values of this attribute from all known windows. |
485 | waitForNotBodyText | waitForNotBodyText(pattern) Generated from getBodyText(). Returns: the entire text of the page |
486 | waitForNotChecked | waitForNotChecked(locator) Generated from isChecked(locator) Arguments: *locator - an element locator pointing to a checkbox or radio button .Returns: true if the checkbox is checked, false otherwise |
487 | waitForNotConfirmation | waitForNotConfirmation(pattern) Generated from getConfirmation(). Returns: the message of the most recent JavaScript confirmation dialog |
488 | waitForNotCookie | waitForNotCookie(pattern) Generated from getCookie(). Returns: all cookies of the current page under test |
489 | waitForNotCookieByName | waitForNotCookieByName(name, pattern) Generated from getCookieByName(name) Arguments: *name - the name of the cookie .Returns: the value of the cookie |
490 | waitForNotCssCount | waitForNotCssCount(css, pattern) Generated from getCssCount(css) Arguments: *css - the css selector to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the specified css se |
491 | waitForNotCursorPosition | waitForNotCursorPosition(locator, pattern) Generated from getCursorPosition(locator) Arguments: *locator - an element locator pointing to an input element or textarea. Returns: the numerical position of the cursor in the field |
492 | waitForNotEditable | waitForNotEditable(locator) Generated from isEditable(locator) Arguments: *locator - an element locator.Returns: true if the input element is editable, false otherwise |
493 | waitForNotElementHeight | waitForNotElementHeight(locator, pattern) Generated from getElementHeight(locator) Arguments: *locator - an element locator pointing to an element .Returns: height of an element in pixels |
494 | waitForNotElementIndex | waitForNotElementIndex(locator, pattern) Generated from getElementIndex(locator) Arguments: *locator - an element locator pointing to an element .Returns: of relative index of the element to its parent (starting from 0) |
495 | waitForNotElementPositionLeft | waitForNotElementPositionLeft(locator, pattern) Generated from getElementPositionLeft(locator) Arguments: *locator - an element locator pointing to an element OR an element itself.Returns: of pixels from the edge of the frame. |
496 | waitForNotElementPositionTop | waitForNotElementPositionTop(locator, pattern) Generated from getElementPositionTop(locator) Arguments: *locator - an element locator pointing to an element OR an element itself.Returns: of pixels from the edge of the frame. |
497 | waitForNotElementWidth | waitForNotElementWidth(locator, pattern) Generated from getElementWidth(locator) Arguments: *locator - an element locator pointing to an element.Returns: width of an element in pixels |
498 | waitForNotEval | waitForNotEval(script, pattern) Generated from getEval(script) Arguments: *script - the JavaScript snippet to run.Returns: the results of evaluating the snippet |
499 | waitForNotExpression | waitForNotExpression(expression, pattern) Generated from getExpression(expression) Arguments: *expression - the value to return.Returns: the value passed in |
500 | waitForNotHtmlSource | waitForNotHtmlSource(pattern) Generated from getHtmlSource(). Returns: the entire HTML source |
501 | waitForNotLocation | waitForNotLocation(pattern) Generated from getLocation(). Returns: the absolute URL of the current page |
502 | waitForNotMouseSpeed | waitForNotMouseSpeed(pattern) Generated from getMouseSpeed(). Returns: the number of pixels between "mousemove" events during dragAndDrop commands (default=10) |
503 | waitForNotOrdered | waitForNotOrdered(locator1, locator2) Generated from isOrdered(locator1, locator2) Arguments: *locator1 - an element locator pointing to the first element*locator2 - an element locator pointing to the second element. Returns: true if element1 is the |
504 | waitForNotPrompt | waitForNotPrompt(pattern) Generated from getPrompt(). Returns: the message of the most recent JavaScript question prompt |
505 | waitForNotSelectOptions | waitForNotSelectOptions(selectLocator, pattern) Generated from getSelectOptions(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all option labels in the specified select drop-down |
506 | waitForNotSelectedId | waitForNotSelectedId(selectLocator, pattern) Generated from getSelectedId(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: the selected option ID in the specified select drop-down |
507 | waitForNotSelectedIds | waitForNotSelectedIds(selectLocator, pattern) Generated from getSelectedIds(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu. Returns: an array of all selected option IDs in the specified select drop-down |
508 | waitForNotSelectedIndex | waitForNotSelectedIndex(selectLocator, pattern) Generated from getSelectedIndex(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: the selected option index in the specified select drop-down |
509 | waitForNotSelectedIndexes | waitForNotSelectedIndexes(selectLocator, pattern) Generated from getSelectedIndexes(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu. Returns: an array of all selected option indexes in the specified select drop |
510 | waitForNotSelectedLabel | waitForNotSelectedLabel(selectLocator, pattern) Generated from getSelectedLabel(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: the selected option label in the specified select drop-down |
511 | waitForNotSelectedLabels | waitForNotSelectedLabels(selectLocator, pattern) Generated from getSelectedLabels(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu. Returns: an array of all selected option labels in the specified select drop-d |
512 | waitForNotSelectedValue | waitForNotSelectedValue(selectLocator, pattern) Generated from getSelectedValue(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu. Returns: the selected option value in the specified select drop-down |
513 | waitForNotSelectedValues | waitForNotSelectedValues(selectLocator, pattern) Generated from getSelectedValues(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: an array of all selected option values in the specified select drop- |
514 | waitForNotSomethingSelected | waitForNotSomethingSelected(selectLocator) Generated from isSomethingSelected(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: true if some option has been selected, false otherwise |
515 | waitForNotSpeed | waitForNotSpeed(pattern) Generated from getSpeed(). Returns: the execution speed in milliseconds. |
516 | waitForNotTable | waitForNotTable(tableCellAddress, pattern) Generated from getTable(tableCellAddress) Arguments: *tableCellAddress - a cell address, e.g. "foo.1.4" .Returns: the text from the specified cell |
517 | waitForNotText | waitForNotText(locator, pattern) Generated from getText(locator) Arguments: *locator - an element locator. Returns: the text of the element |
518 | waitForNotTitle | waitForNotTitle(pattern) Generated from getTitle(). Returns: the title of the current page |
519 | waitForNotValue | waitForNotValue(locator, pattern) Generated from getValue(locator) Arguments: *locator - an element locator. Returns: the element value, or "on/off" for checkbox/radio elements |
520 | waitForNotVisible | waitForNotVisible(locator) Generated from isVisible(locator) Arguments: *locator - an element locator.Returns: true if the specified element is visible, false otherwise |
521 | waitForNotWhetherThisFrameMatchFrameExpression | waitForNotWhetherThisFrameMatchFrameExpression(currentFrameString, target, pattern) Generated from getWhetherThisFrameMatchFrameExpression(currentFrameString, target) Arguments: *currentFrameString - starting frame*target - new frame (which might be |
522 | waitForNotWhetherThisWindowMatchWindowExpression | waitForNotWhetherThisWindowMatchWindowExpression(currentWindowString, target, pattern) Generated from getWhetherThisWindowMatchWindowExpression(currentWindowString, target) Arguments: *currentWindowString - starting window*target - new window (which |
523 | waitForNotXpathCount | waitForNotXpathCount(xpath, pattern) Generated from getXpathCount(xpath) Arguments: *xpath - the xpath expression to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the sp |
524 | waitForOrdered | waitForOrdered(locator1, locator2) Generated from isOrdered(locator1, locator2) Arguments: *locator1 - an element locator pointing to the first element*locator2 - an element locator pointing to the second element . Returns: true if element1 is the p |
525 | waitForPageToLoad | waitForPageToLoad(timeout) Arguments: *timeout - a timeout in milliseconds, after which this command will return with an error |
526 | waitForPopUp | waitForPopUp(windowID, timeout) Arguments: *windowID - the JavaScript window "name" of the window that will appear (not the text of the title bar) If unspecified, or specified as "null", this command will wait for the first non-top window to appear (don |
527 | waitForPrompt | waitForPrompt(pattern) Generated from getPrompt(). Returns: the message of the most recent JavaScript question prompt |
528 | waitForPromptNotPresent | waitForPromptNotPresent() Generated from isPromptPresent(). Returns: true if there is a pending prompt |
529 | waitForPromptPresent | waitForPromptPresent() Generated from isPromptPresent(). Returns: true if there is a pending prompt |
530 | waitForSelectOptions | waitForSelectOptions(selectLocator, pattern) Generated from getSelectOptions(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all option labels in the specified select drop-down |
531 | waitForSelectedId | waitForSelectedId(selectLocator, pattern) Generated from getSelectedId(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: the selected option ID in the specified select drop-down |
532 | waitForSelectedIds | waitForSelectedIds(selectLocator, pattern) Generated from getSelectedIds(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu.Returns: an array of all selected option IDs in the specified select drop-down |
533 | waitForSelectedIndex | waitForSelectedIndex(selectLocator, pattern) Generated from getSelectedIndex(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu. Returns: the selected option index in the specified select drop-down |
534 | waitForSelectedIndexes | waitForSelectedIndexes(selectLocator, pattern) Generated from getSelectedIndexes(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option indexes in the specified select drop |
535 | waitForSelectedLabel | waitForSelectedLabel(selectLocator, pattern) Generated from getSelectedLabel(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option label in the specified select drop-down |
536 | waitForSelectedLabels | waitForSelectedLabels(selectLocator, pattern) Generated from getSelectedLabels(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option labels in the specified select drop-do |
537 | waitForSelectedValue | waitForSelectedValue(selectLocator, pattern) Generated from getSelectedValue(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: the selected option value in the specified select drop-down |
538 | waitForSelectedValues | waitForSelectedValues(selectLocator, pattern) Generated from getSelectedValues(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: an array of all selected option values in the specified select drop-do |
539 | waitForSomethingSelected | waitForSomethingSelected(selectLocator) Generated from isSomethingSelected(selectLocator) Arguments: *selectLocator - an element locator identifying a drop-down menu .Returns: true if some option has been selected, false otherwise |
540 | waitForSpeed | waitForSpeed(pattern) Generated from getSpeed(). Returns: the execution speed in milliseconds. |
541 | waitForTable | waitForTable(tableCellAddress, pattern) Generated from getTable(tableCellAddress) Arguments: *tableCellAddress - a cell address, e.g. "foo.1.4" .Returns: the text from the specified cell |
542 | waitForText | waitForText(locator, pattern) Generated from getText(locator) Arguments: *locator - an element locator.Returns: the text of the element |
543 | waitForTextNotPresent | waitForTextNotPresent(pattern) This command is deprecated. Use the waitForNotText command with an element locator instead. Generated from isTextPresent(pattern) Arguments: *pattern - a pattern to match with the text of the page .Returns: true if the |
544 | waitForTextPresent | waitForTextPresent(pattern) This command is deprecated. Use the waitForText command with an element locator instead. Generated from isTextPresent(pattern) Arguments: *pattern - a pattern to match with the text of the page .Returns: true if the patter |
545 | waitForTitle | waitForTitle(pattern) Generated from getTitle(). Returns: the title of the current page |
546 | waitForValue | waitForValue(locator, pattern) Generated from getValue(locator) Arguments: *locator - an element locator.Returns: the element value, or "on/off" for checkbox/radio elements |
547 | waitForVisible | waitForVisible(locator) Generated from isVisible(locator) Arguments: *locator - an element locator. Returns: true if the specified element is visible, false otherwise |
548 | waitForWhetherThisFrameMatchFrameExpression | waitForWhetherThisFrameMatchFrameExpression(currentFrameString, target, pattern) Generated from getWhetherThisFrameMatchFrameExpression(currentFrameString, target) Arguments: *currentFrameString - starting frame*target - new frame (which might be rel |
549 | waitForWhetherThisWindowMatchWindowExpression | waitForWhetherThisWindowMatchWindowExpression(currentWindowString, target, pattern) Generated from getWhetherThisWindowMatchWindowExpression(currentWindowString, target) Arguments: *currentWindowString - starting window*target - new window (which mig |
550 | waitForXpathCount | waitForXpathCount(xpath, pattern) Generated from getXpathCount(xpath) Arguments: *xpath - the xpath expression to evaluate. do NOT wrap this expression in a 'count()' function; we will do that for you.Returns: the number of nodes that match the speci |
551 | waitPreparation | waitPreparation |
552 | waitPreparationAndWait | waitPreparationAndWait |
553 | windowFocus | windowFocus() |
554 | windowFocusAndWait | windowFocusAndWait() Generated from windowFocus() |
555 | windowMaximize | windowMaximize() |
556 | windowMaximizeAndWait | windowMaximizeAndWait() Generated from windowMaximize() |