1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.admin.test;
17
18 import org.testng.annotations.Parameters;
19 import org.testng.annotations.Test;
20
21
22
23
24 public class IdentityPersonLookUpEditSTNGBkMrkGen extends IdentityPersonLookUpEditSTNGBase {
25
26 @Override
27 public String getTestUrl() {
28 return BOOKMARK_URL;
29 }
30
31 @Test(groups = { "all", "fast", "default", "bookmark" }, description = "testIdentityPersonLookUpEditBookmark")
32 @Parameters( { "seleniumHost", "seleniumPort", "os", "browser", "version", "webSite" })
33 public void testIdentityPersonLookUpEditBookmark() throws Exception {
34 testIdentityPersonLookUpEditBookmark(this);
35 }
36 }