Exemple #1
0
 public CreateAccountPage(IExecutionTool executionTool) : base(executionTool)
 {
 }
 public HomePage(IExecutionTool executionTool) : base(executionTool)
 {
 }
 public BasePage(IExecutionTool executionTool)
 {
     this.executionTool = executionTool;
     Thread.Sleep(5000);
     executionTool.WaitForApplicationIdle();
 }
Exemple #4
0
 public RegistrationPage(IExecutionTool executionTool) : base(executionTool)
 {
 }
Exemple #5
0
 public DemoNavigator(IExecutionTool executionTool) : base(executionTool)
 {
 }
 public BaseTest()
 {
     ExecutionTool = WebExecutionTool.Instance;
     Navigator     = new DemoNavigator(ExecutionTool);
     _basePage     = new BasePage(ExecutionTool);
 }