-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathobj_template.cs
More file actions
42 lines (28 loc) · 773 Bytes
/
obj_template.cs
File metadata and controls
42 lines (28 loc) · 773 Bytes
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ArtOfTest.WebAii.Core;
using ArtOfTest.WebAii.ObjectModel;
using ArtOfTest.WebAii.TestAttributes;
using ArtOfTest.WebAii.TestTemplates;
using ArtOfTest.WebAii.Controls.HtmlControls;
public class ${class_name} : HtmlPage
{
private Browser _ownerBrowser;
public ${class_name}(string url, Find find) :
base(url, find)
{
this._ownerBrowser = find.AssociatedBrowser;
}
//private region
${private_property}
private string TagA = "tagname=a";
private string TagInput = "tagname=input";
private string TagSelect = "tagname=select";
//frame inner class
//in another template file
//public region
${public_property}
}