-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdebug-browser.robot
36 lines (30 loc) · 1.01 KB
/
debug-browser.robot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
*** Settings ***
Documentation Opens the browser and searches Bing
Library RPA.Browser.Selenium
Library OperatingSystem
Library Dialogs
Suite Teardown Teardown Actions
*** Variables ***
${BING_URL} https://bing.com
*** Keywords ***
Teardown Actions
${debug}= Get Environment Variable ROBOT_DEBUG FALSE
Run Keyword If '${debug}' == 'TRUE' and '${SUITE_STATUS}' == 'FAIL' Pause For Debug
Close All Browsers
*** Keywords ***
Pause For Debug
Pause Execution Paused execution due to failure, click OK to continue teardown
*** Keywords ***
Open Bing
Open Available Browser ${BING_URL}
*** Keywords ***
Perform Search
[Arguments] ${query}
Wait Until Element Is Visible name:q
# Input Text name:q ${query} # Will Work, input name is correct
Input Text name:search_box ${query} # Will Fail, input name is incorrect
Submit Form //form[@id="sb_form"]
*** Task ***
Search Bing
Open Bing
Perform Search Formulated Automation Github