1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.demo.travel.account.inquiry;
17
18 import org.testng.annotations.Parameters;
19 import org.testng.annotations.Test;
20
21
22
23
24 public class DemoTravelAccountInquirySTNGBkMrkGen extends DemoTravelAccountInquirySTNGBase {
25
26 @Override
27 public String getTestUrl() {
28 return BOOKMARK_URL;
29 }
30
31 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testInquiryCollapseExpandBookmark")
32 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
33 public void testInquiryCollapseExpandBookmark() throws Exception {
34 testInquiryCollapseExpandBookmark(this);
35 }
36
37 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testInquiryLightBoxBookmark")
38 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
39 public void testInquiryLightBoxBookmark() throws Exception {
40 testInquiryLightBoxBookmark(this);
41 }
42
43 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testInquiryBackButtonBookmark")
44 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
45 public void testInquiryBackButtonBookmark() throws Exception {
46 testInquiryBackButtonBookmark(this);
47 }
48 }