18 lines
554 B
Plaintext
18 lines
554 B
Plaintext
*** Settings ***
|
|
Library SeleniumLibrary
|
|
Resource ../BackOffice/BackOfficeApp.robot
|
|
Resource ../FrontOffice/FrontOfficeApp.robot
|
|
|
|
*** Variables ***
|
|
${BROWSER} chrome
|
|
${CHROME OPTIONS} add_argument("--headless=new");add_argument("--disable-dev-shm-usage");add_argument("--no-sandbox");add_argument("--window-size=1920,1080")
|
|
|
|
*** Keywords ***
|
|
Begin Web Test
|
|
Open Browser about:blank ${BROWSER} options=${CHROME OPTIONS}
|
|
Set Selenium Speed 0.3s
|
|
Set Selenium Timeout 7s
|
|
|
|
End Web Test
|
|
Close All Browsers
|