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 DemoTravelAccountInquirySTNGNavGen extends DemoTravelAccountInquirySTNGBase {
25
26 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testInquiryCollapseExpandNav")
27 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
28 public void testInquiryCollapseExpandNav() throws Exception {
29 testInquiryCollapseExpandNav(this);
30 }
31
32 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testInquiryLightBoxNav")
33 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
34 public void testInquiryLightBoxNav() throws Exception {
35 testInquiryLightBoxNav(this);
36 }
37
38 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testInquiryBackButtonNav")
39 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
40 public void testInquiryBackButtonNav() throws Exception {
41 testInquiryBackButtonNav(this);
42 }
43 }