22 lines
565 B
Plaintext
22 lines
565 B
Plaintext
*** Settings ***
|
|
Library SeleniumLibrary
|
|
|
|
*** Variables ***
|
|
${BROWSER}= chrome
|
|
${URL}= https://automationplayground.com/crm/
|
|
|
|
|
|
*** Keywords ***
|
|
Begin Web Test
|
|
# set selenium speed .2s
|
|
set selenium timeout 10s
|
|
open browser ${URL} ${BROWSER}
|
|
|
|
#resize browser window for recording
|
|
set window position x=0 y=0
|
|
set window size width=1280 height=1040
|
|
|
|
|
|
End Web Test
|
|
Close All Browsers
|