public MainPage(Driver driver)
 {
     _driver         = driver;
     SearchSection   = new SearchSection(_driver);
     MainMenuSection = new MainMenuSection(_driver);
     CartInfoSection = new CartInfoSection(_driver);
 }
 public CartPage(Driver driver)
 {
     _driver           = driver;
     SearchSection     = new SearchSection(_driver);
     MainMenuSection   = new MainMenuSection(_driver);
     CartInfoSection   = new CartInfoSection(_driver);
     BreadcrumbSection = new BreadcrumbSection(_driver);
 }