This repository has been archived on 2022-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
tso-sw/test01.robot
surtur f70a7524a2
All checks were successful
continuous-integration/drone/push Build is passing
fix: to use ${DELAY} you gotta *have* ${DELAY}
2020-05-21 22:34:49 +02:00

28 lines
868 B
Plaintext

*** Settings ***
Library SeleniumLibrary run_on_failure=Nothing
*** Variables ***
${URL} https://git.dotya.ml/
${BROWSER} chrome
${DELAY} 0.2
*** Test Cases ***
open page and maximize
${chrome_options} = Evaluate sys.modules['selenium.webdriver'].ChromeOptions() sys, selenium.webdriver
Call Method ${chrome_options} add_argument headless
Call Method ${chrome_options} add_argument no-sandbox
Call Method ${chrome_options} add_argument disable-dev-shm-usage
${options}= Call Method ${chrome_options} to_capabilities
Open Browser ${URL} browser=${BROWSER} desired_capabilities=${options}
Set Selenium Speed ${DELAY}
Set Window Size 1920 1080
Maximize Browser Window
Capture Page Screenshot
Post-conditions
Log Location
Sleep 1
Close Browser