summaryrefslogtreecommitdiff
path: root/automated/linux/ui-browser-test/robot-test-scripts/youtube-play.robot
diff options
context:
space:
mode:
Diffstat (limited to 'automated/linux/ui-browser-test/robot-test-scripts/youtube-play.robot')
-rw-r--r--automated/linux/ui-browser-test/robot-test-scripts/youtube-play.robot19
1 files changed, 19 insertions, 0 deletions
diff --git a/automated/linux/ui-browser-test/robot-test-scripts/youtube-play.robot b/automated/linux/ui-browser-test/robot-test-scripts/youtube-play.robot
new file mode 100644
index 0000000..c38e96e
--- /dev/null
+++ b/automated/linux/ui-browser-test/robot-test-scripts/youtube-play.robot
@@ -0,0 +1,19 @@
+*** Settings ***
+Library Selenium2Library
+
+*** Variables ***
+${Browser} chrome
+${SiteUrl} https://youtu.be/HpvZ2HwL4zI
+${DashboardTitle} Linaro Connect BKK16 - Welcome and Introduction - YouTube
+${Delay} 10s
+
+*** Test Cases ***
+Youtube-Play-Video-Test
+ Open Browser to the Youtube Page
+ sleep ${Delay}
+ [Teardown] Close Browser
+
+*** Keywords ***
+Open Browser to the Youtube Page
+ open browser ${SiteUrl} ${Browser}
+ Maximize Browser Window