|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the Sylius package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) Paweł Jędrzejewski |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace Sylius\Behat\Page\Shop\Taxon; |
|
13
|
|
|
|
|
14
|
|
|
use Behat\Mink\Driver\Selenium2Driver; |
|
15
|
|
|
use Sylius\Behat\Page\SymfonyPage; |
|
16
|
|
|
|
|
17
|
|
|
/** |
|
18
|
|
|
* @author Anna Walasek <[email protected]> |
|
19
|
|
|
*/ |
|
20
|
|
|
class ShowPage extends SymfonyPage implements ShowPageInterface |
|
21
|
|
|
{ |
|
22
|
|
|
/** |
|
23
|
|
|
* {@inheritdoc} |
|
24
|
|
|
*/ |
|
25
|
|
|
public function getRouteName() |
|
26
|
|
|
{ |
|
27
|
|
|
return 'sylius_shop_taxon_show'; |
|
28
|
|
|
} |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* {@inheritdoc} |
|
32
|
|
|
*/ |
|
33
|
|
|
public function isProductOnList($productName) |
|
34
|
|
|
{ |
|
35
|
|
|
return null !== $this->getDocument()->find('css', sprintf('.sylius-product-name:contains("%s")', $productName)); |
|
36
|
|
|
} |
|
37
|
|
|
|
|
38
|
|
|
/** |
|
39
|
|
|
* {@inheritdoc} |
|
40
|
|
|
*/ |
|
41
|
|
|
public function isEmpty() |
|
42
|
|
|
{ |
|
43
|
|
|
return false !== strpos($this->getDocument()->find('css', '.message')->getText(), 'There are no results to display'); |
|
44
|
|
|
} |
|
45
|
|
|
|
|
46
|
|
|
/** |
|
47
|
|
|
* {@inheritdoc} |
|
48
|
|
|
*/ |
|
49
|
|
|
public function isProductWithPriceOnList($productName, $productPrice) |
|
50
|
|
|
{ |
|
51
|
|
|
$container = $this->getDocument()->find('css', sprintf('.sylius-product-name:contains("%s")', $productName))->getParent(); |
|
52
|
|
|
|
|
53
|
|
|
return $productPrice === $container->find('css', '.sylius-product-price')->getText(); |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
/** |
|
57
|
|
|
* {@inheritdoc} |
|
58
|
|
|
*/ |
|
59
|
|
|
public function countProductsItems() |
|
60
|
|
|
{ |
|
61
|
|
|
$productsList = $this->getDocument()->find('css', '#products'); |
|
62
|
|
|
|
|
63
|
|
|
$products = $productsList->findAll('css','.column > .card'); |
|
64
|
|
|
|
|
65
|
|
|
return count($products); |
|
66
|
|
|
} |
|
67
|
|
|
|
|
68
|
|
|
/** |
|
69
|
|
|
* {@inheritdoc} |
|
70
|
|
|
*/ |
|
71
|
|
|
public function isProductOnPageWithName($name) |
|
72
|
|
|
{ |
|
73
|
|
|
return null !== $this->getDocument()->find('css', sprintf('.content > a:contains("%s")', $name)); |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* {@inheritdoc} |
|
78
|
|
|
*/ |
|
79
|
|
|
public function getFirstProductNameFromList() |
|
80
|
|
|
{ |
|
81
|
|
|
$productsList = $this->getDocument()->find('css', '#products'); |
|
82
|
|
|
|
|
83
|
|
|
return $productsList->find('css', '.content > a')->getText(); |
|
84
|
|
|
} |
|
85
|
|
|
|
|
86
|
|
|
/** |
|
87
|
|
|
* {@inheritdoc} |
|
88
|
|
|
*/ |
|
89
|
|
|
public function search($name) |
|
90
|
|
|
{ |
|
91
|
|
|
$this->getDocument()->fillField('criteria_search_value', $name); |
|
92
|
|
|
$this->getDocument()->pressButton('Search'); |
|
93
|
|
|
} |
|
94
|
|
|
|
|
95
|
|
|
public function clearFilter() |
|
96
|
|
|
{ |
|
97
|
|
|
$this->getDocument()->clickLink('Clear'); |
|
98
|
|
|
} |
|
99
|
|
|
} |
|
100
|
|
|
|