File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
utest/test/api/approved_files Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -55,4 +55,4 @@ Teardown Custom Locator
5555Custom Locator Strategy
5656 [Arguments] ${browser } ${locator } ${tag } ${constraints }
5757 ${element } = Execute Javascript return window.document.getElementById('${locator } ') || [];
58- [Return] ${element }
58+ RETURN ${element }
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Open Browser To Start Page Without Testing Default Options
2424 ... desired_capabilities=${DESIRED_CAPABILITIES } alias=${alias }
2525 ${orig speed } = Set Selenium Speed ${SPEED }
2626 ${orig timeout } = Set Selenium Timeout 10 seconds
27- [Return] ${orig speed } 5 seconds
27+ RETURN ${orig speed } 5 seconds
2828
2929Cannot Be Executed In IE
3030 [Documentation] Cannot Be Executed In IE
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ class SeleniumLibrary(DynamicCore):
238238
239239 | Custom Locator Strategy | [Arguments] | ${browser} | ${locator} | ${tag} | ${constraints} |
240240 | | ${element}= | Execute Javascript | return window.document.getElementById('${locator}'); |
241- | | [Return] | ${element} |
241+ | | RETURN | ${element} |
242242
243243 This keyword is a reimplementation of the basic functionality of the
244244 ``id`` locator where ``${browser}`` is a reference to a WebDriver
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ a WebElement that should be acted on:
177177
178178| Custom Locator Strategy | [Arguments] | ${browser} | ${locator} | ${tag} | ${constraints} |
179179| | ${element}= | Execute Javascript | return window.document.getElementById('${locator}'); |
180- | | [Return] | ${element} |
180+ | | RETURN | ${element} |
181181
182182This keyword is a reimplementation of the basic functionality of the
183183``id`` locator where ``${browser}`` is a reference to a WebDriver
You can’t perform that action at this time.
0 commit comments