コード例 #1
0
 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;
 }
コード例 #2
0
 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);
 }
コード例 #3
0
 public function __construct(WebDriver $webDriver, AbstractMagentoTestCase $testCase, ThemeConfiguration $theme)
 {
     parent::__construct($webDriver, $testCase, $theme);
 }
コード例 #4
0
 public function __construct(WebDriver $webDriver, AbstractTestCase $testCase, ThemeConfigurationInterface $theme, SwatchProcessor $swatchProcessor, StandardProcessor $standardProcessor)
 {
     parent::__construct($webDriver, $testCase, $theme);
     $this->swatchProcessor = $swatchProcessor;
     $this->standardProcessor = $standardProcessor;
 }
コード例 #5
0
 public function __construct(WebDriver $webDriver, AbstractTestCase $testCase, ThemeConfiguration $theme, Tab $navigator)
 {
     parent::__construct($webDriver, $testCase, $theme);
     $this->navigator = $navigator;
 }
コード例 #6
0
ファイル: Menu.php プロジェクト: magium/magium
 public function __construct(WebDriver $webDriver, AbstractTestCase $testCase, ThemeConfigurationInterface $theme, InstructionNavigator $instructionNavigator)
 {
     parent::__construct($webDriver, $testCase, $theme);
     $this->instructionNavigator = $instructionNavigator;
 }