-
Notifications
You must be signed in to change notification settings - Fork 0
/
agoda.robot
56 lines (45 loc) · 2.46 KB
/
agoda.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
*** Settings ***
Library SeleniumLibrary
*** Variables ***
${url} https://agoda.com
${browser} chrome
*** Test Cases ***
Testcase1-OpenBrowser
open browser ${url} ${browser}
close browser
Testcase2-RightNavigation
open browser ${url} ${browser}
title should be Agoda Official Site | Free Cancellation & Booking Deals | Over 2 Million Hotels
close browser
Testcase3-Textboxenabled
open browser ${url} ${browser}
title should be Agoda Official Site | Free Cancellation & Booking Deals | Over 2 Million Hotels
wait until element is visible xpath://*[@id="SearchBoxContainer"]/div[1]/div/div[2]/div/div/div[1]/div/div/input
close browser
Testcase4-Inputtext
open browser ${url} ${browser}
title should be Agoda Official Site | Free Cancellation & Booking Deals | Over 2 Million Hotels
wait until element is visible xpath://*[@id="SearchBoxContainer"]/div[1]/div/div[2]/div/div/div[1]/div/div/input
input text xpath://*[@id="SearchBoxContainer"]/div[1]/div/div[2]/div/div/div[1]/div/div/input kampar
click button xpath://*[@id="SearchBoxContainer"]/div[2]/button
close browser
Testcase5-waitradiobutton
open browser ${url} ${browser}
title should be Agoda Official Site | Free Cancellation & Booking Deals | Over 2 Million Hotels
wait until element is visible xpath://*[@id="SearchBoxContainer"]/div[1]/div/div[2]/div/div/div[1]/div/div/input
input text xpath://*[@id="SearchBoxContainer"]/div[1]/div/div[2]/div/div/div[1]/div/div/input kampar
click button xpath://*[@id="SearchBoxContainer"]/div[2]/button
sleep 3
wait until element is enabled xpath://*[@id="searchPageLeftColumn"]/div[2]/div[1]/div[2]/ul/li[3]/span
close browser
Testcase6-checkbox
open browser ${url} ${browser}
title should be Agoda Official Site | Free Cancellation & Booking Deals | Over 2 Million Hotels
wait until element is visible xpath://*[@id="SearchBoxContainer"]/div[1]/div/div[2]/div/div/div[1]/div/div/input
input text xpath://*[@id="SearchBoxContainer"]/div[1]/div/div[2]/div/div/div[1]/div/div/input kampar
click button xpath://*[@id="SearchBoxContainer"]/div[2]/button
sleep 3
wait until element is enabled xpath://*[@id="searchPageLeftColumn"]/div[2]/div[1]/div[2]/ul/li[3]/span
click element xpath://*[@id="searchPageLeftColumn"]/div[2]/div[1]/div[2]/ul/li[1]/span/span[2]/span/span
close browser
*** Keywords ***