File tree 7 files changed +8
-7
lines changed
utest/test/api/approved_files
7 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 87
87
# sudo chmod u+x ./selenium-server-standalone.jar
88
88
# xvfb-run --auto-servernum python atest/run.py --zip headlesschrome --grid True
89
89
90
- - uses : actions/upload-artifact@v3
90
+ - uses : actions/upload-artifact@v4
91
91
if : failure()
92
92
with :
93
93
name : SeleniumLibrary Test results
94
94
path : atest/zip_results
95
+ overwrite : true
Original file line number Diff line number Diff line change @@ -55,4 +55,4 @@ Teardown Custom Locator
55
55
Custom Locator Strategy
56
56
[Arguments] ${browser } ${locator } ${tag } ${constraints }
57
57
${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
24
24
... desired_capabilities=${DESIRED_CAPABILITIES } alias=${alias }
25
25
${orig speed } = Set Selenium Speed ${SPEED }
26
26
${orig timeout } = Set Selenium Timeout 10 seconds
27
- [Return] ${orig speed } 5 seconds
27
+ RETURN ${orig speed } 5 seconds
28
28
29
29
Cannot Be Executed In IE
30
30
[Documentation] Cannot Be Executed In IE
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ def process_output(browser):
251
251
print ("Verifying results..." )
252
252
options = []
253
253
output = os .path .join (RESULTS_DIR , "output.xml" )
254
- robotstatuschecker .process_output (output , verbose = False )
254
+ robotstatuschecker .process_output (output )
255
255
options .extend ([opt .format (browser = browser ) for opt in REBOT_OPTIONS ])
256
256
try :
257
257
rebot_cli (options + [output ])
Original file line number Diff line number Diff line change 1
1
selenium >= 4.3.0
2
2
robotframework >= 4.1.3
3
3
robotframework-pythonlibcore >= 4.4.1
4
- click >= 8.1.7
4
+ click >= 8.0
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ class SeleniumLibrary(DynamicCore):
238
238
239
239
| Custom Locator Strategy | [Arguments] | ${browser} | ${locator} | ${tag} | ${constraints} |
240
240
| | ${element}= | Execute Javascript | return window.document.getElementById('${locator}'); |
241
- | | [Return] | ${element} |
241
+ | | RETURN | ${element} |
242
242
243
243
This keyword is a reimplementation of the basic functionality of the
244
244
``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:
177
177
178
178
| Custom Locator Strategy | [Arguments] | ${browser} | ${locator} | ${tag} | ${constraints} |
179
179
| | ${element}= | Execute Javascript | return window.document.getElementById('${locator}'); |
180
- | | [Return] | ${element} |
180
+ | | RETURN | ${element} |
181
181
182
182
This keyword is a reimplementation of the basic functionality of the
183
183
``id`` locator where ``${browser}`` is a reference to a WebDriver
You can’t perform that action at this time.
0 commit comments