protected EShopPage(Driver driver)
 {
     Driver          = driver;
     SearchSection   = new SearchSection(driver);
     MainMenuSection = new MainMenuSection(driver);
     CartInfoSection = new CartInfoSection(driver);
 }
Exemplo n.º 2
0
 protected EShopPage()
 {
     ElementFindService = LoggingSingletonDriver.Instance;
     SearchSection      = new SearchSection(LoggingSingletonDriver.Instance);
     MainMenuSection    = new MainMenuSection(LoggingSingletonDriver.Instance);
     CartInfoSection    = new CartInfoSection(LoggingSingletonDriver.Instance);
 }
Exemplo n.º 3
0
 protected NavigatableEShopPage(IElementFindService findService, INavigationService navigationService)
 {
     _navigationService = navigationService;
     SearchSection      = new SearchSection(findService);
     MainMenuSection    = new MainMenuSection(findService);
     CartInfoSection    = new CartInfoSection(findService);
 }
Exemplo n.º 4
0
 protected EShopPage(IElementFindService elementFindService)
 {
     ElementFindService = elementFindService;
     SearchSection      = new SearchSection(elementFindService);
     MainMenuSection    = new MainMenuSection(elementFindService);
     CartInfoSection    = new CartInfoSection(elementFindService);
 }
 protected NavigatableEShopPage()
 {
     _navigationService = LoggingSingletonDriver.Instance;
     SearchSection      = new SearchSection(LoggingSingletonDriver.Instance);
     MainMenuSection    = new MainMenuSection(LoggingSingletonDriver.Instance);
     CartInfoSection    = new CartInfoSection(LoggingSingletonDriver.Instance);
 }