public function __construct(WebDriver $webDriver, AbstractMagentoTestCase $testCase, AbstractThemeConfiguration $theme, HasLayeredNavigation $hasLayeredNavigation, ProductList $productList, ProductGrid $productGrid) { parent::__construct($webDriver, $testCase, $theme); $this->hasLayeredNavigation = $hasLayeredNavigation; $this->productList = $productList; $this->productGrid = $productGrid; }
public function __construct(WebDriver $webDriver, AbstractMagentoTestCase $testCase, AbstractThemeConfiguration $theme) { parent::__construct($webDriver, $testCase, $theme); $this->addFilterType(self::FILTER_TYPE_DEFAULT); $this->addFilterType(self::FILTER_TYPE_PRICE); $this->addFilterType(self::FILTER_TYPE_SWATCH); }
public function __construct(WebDriver $webDriver, AbstractMagentoTestCase $testCase, ThemeConfiguration $theme) { parent::__construct($webDriver, $testCase, $theme); }
public function __construct(WebDriver $webDriver, AbstractTestCase $testCase, ThemeConfigurationInterface $theme, SwatchProcessor $swatchProcessor, StandardProcessor $standardProcessor) { parent::__construct($webDriver, $testCase, $theme); $this->swatchProcessor = $swatchProcessor; $this->standardProcessor = $standardProcessor; }
public function __construct(WebDriver $webDriver, AbstractTestCase $testCase, ThemeConfiguration $theme, Tab $navigator) { parent::__construct($webDriver, $testCase, $theme); $this->navigator = $navigator; }
public function __construct(WebDriver $webDriver, AbstractTestCase $testCase, ThemeConfigurationInterface $theme, InstructionNavigator $instructionNavigator) { parent::__construct($webDriver, $testCase, $theme); $this->instructionNavigator = $instructionNavigator; }