This repository was archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathBrowserContext.php
More file actions
400 lines (353 loc) · 11.6 KB
/
Copy pathBrowserContext.php
File metadata and controls
400 lines (353 loc) · 11.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<?php
namespace Sanpi\Behatch\Context;
use Behat\Gherkin\Node\TableNode;
use Behat\Mink\Exception\ExpectationException;
use Behat\Mink\Exception\ResponseTextException;
use Behat\Mink\Exception\ElementNotFoundException;
class BrowserContext extends BaseContext
{
private $timeout;
private $dateFormat = 'dmYHi';
public function __construct($timeout = 1)
{
$this->timeout = $timeout;
}
/**
* @AfterScenario
*/
public function closeBrowser()
{
$this->getSession()->stop();
}
/**
* Set login / password for next HTTP authentication
*
* @When I set basic authentication with :user and :password
*/
public function iSetBasicAuthenticationWithAnd($user, $password)
{
$this->getSession()->setBasicAuth($user, $password);
}
/**
* Open url with various parameters
*
* @Given (I )am on url composed by:
*/
public function iAmOnUrlComposedBy(TableNode $tableNode)
{
$url = '';
foreach ($tableNode->getHash() as $hash) {
$url .= $hash['parameters'];
}
return $this->getMinkContext()
->visit($url);
}
/**
* Clicks on the nth CSS element
*
* @When (I )click on the :index :element element
*/
public function iClickOnTheNthElement($index, $element)
{
$node = $this->findElement('css', $element, $index);
$node->click();
}
/**
* Click on the nth specified link
*
* @When (I )follow the :index :link link
*/
public function iFollowTheNthLink($index, $link)
{
$element = ['link', $this->getSession()->getSelectorsHandler()->xpathLiteral($link)];
$node = $this->findElement('named', $element, $index);
$node->click();
}
/**
* Presses the nth specified button
*
* @When (I )press the :index :button button
*/
public function pressTheNthButton($index, $button)
{
$element = ['button', $this->getSession()->getSelectorsHandler()->xpathLiteral($button)];
$node = $this->findElement('named', $element, $index);
$node->click();
}
/**
* Fills in form field with current date
*
* @When (I )fill in :field with the current date
*/
public function iFillInWithTheCurrentDate($field)
{
return $this->iFillInWithTheCurrentDateAndModifier($field, 'now');
}
/**
* Fills in form field with current date and strtotime modifier
*
* @When (I )fill in :field with the current date and modifier :modifier
*/
public function iFillInWithTheCurrentDateAndModifier($field, $modifier)
{
return $this->getMinkContext()
->fillField($field, date($this->dateFormat, strtotime($modifier)));
}
/**
* Mouse over a CSS element
*
* @When (I )hover :element
*/
public function iHoverIShouldSeeIn($element)
{
$node = $this->getSession()->getPage()->find('css', $element);
if ($node === null) {
throw new \Exception("The hovered element '$element' was not found anywhere in the page");
}
$node->mouseOver();
}
/**
* Save value of the field in parameters array
*
* @When (I )save the value of :field in the :parameter parameter
*/
public function iSaveTheValueOfInTheParameter($field, $parameter)
{
$field = str_replace('\\"', '"', $field);
$node = $this->getSession()->getPage()->findField($field);
if ($node === null) {
throw new \Exception("The field '$field' was not found anywhere in the page");
}
$this->setMinkParameter($parameter, $node->getValue());
}
/**
* Checks, that the page should contains specified text after given timeout
*
* @Then (I )wait :count second(s) until I see :text
*/
public function iWaitSecondsUntilISee($count, $text)
{
$this->iWaitSecondsUntilISeeInTheElement($count, $text, 'html');
}
/**
* Checks, that the page should contains specified text after timeout
*
* @Then (I )wait until I see :text
*/
public function iWaitUntilISee($text)
{
$this->iWaitSecondsUntilISee($this->timeout, $text);
}
/**
* Checks, that the element contains specified text after timeout
*
* @Then (I )wait :count second(s) until I see :text in the :element element
*/
public function iWaitSecondsUntilISeeInTheElement($count, $text, $element)
{
$this->iWaitSecondsForElement($count, $element);
$expected = str_replace('\\"', '"', $text);
$node = $this->getSession()->getPage()->find('css', $element);
$message = "The text '$expected' was not found after a $count seconds timeout";
$this->assertContains($expected, $node->getText(), $message);
}
/**
* @Then (I )wait :count second(s)
*/
public function iWaitSeconds($count)
{
sleep($count);
}
/**
* Checks, that the element contains specified text after timeout
*
* @Then (I )wait until I see :text in the :element element
*/
public function iWaitUntilISeeInTheElement($text, $element)
{
$this->iWaitSecondsUntilISeeInTheElement($this->timeout, $text, $element);
}
/**
* Checks, that the page should contains specified element after timeout
*
* @Then (I )wait for :element element
*/
public function iWaitForElement($element)
{
$this->iWaitSecondsForElement($this->timeout, $element);
}
/**
* Wait for a element
*
* @Then (I )wait :count second(s) for :element element
*/
public function iWaitSecondsForElement($count, $element)
{
$found = false;
$startTime = time();
do {
try {
$node = $this->getSession()->getPage()->findAll('css', $element);
$this->assertCount(1, $node);
$found = true;
}
catch (ExpectationException $e) {
/* Intentionnaly leave blank */
}
}
while (time() - $startTime < $count);
if ($found === false) {
$message = "The element '$element' was not found after a $count seconds timeout";
throw new ResponseTextException($message, $this->getSession(), $e);
}
}
/**
* @Then /^(?:|I )should see (?P<count>\d+) "(?P<element>[^"]*)" in the (?P<index>\d+)(?:st|nd|rd|th) "(?P<parent>[^"]*)"$/
*/
public function iShouldSeeNElementInTheNthParent($count, $element, $index, $parent)
{
$actual = $this->countElements($element, $index, $parent);
if ($actual !== $count) {
throw new \Exception("$actual occurrences of the '$element' element in '$parent' found");
}
}
/**
* @Then (I )should see less than :count :element in the :index :parent
*/
public function iShouldSeeLessThanNElementInTheNthParent($count, $element, $index, $parent)
{
$actual = $this->countElements($element, $index, $parent);
if ($actual > $count) {
throw new \Exception("$actual occurrences of the '$element' element in '$parent' found");
}
}
/**
* @Then (I )should see more than :count :element in the :index :parent
*/
public function iShouldSeeMoreThanNElementInTheNthParent($count, $element, $index, $parent)
{
$actual = $this->countElements($element, $index, $parent);
if ($actual < $count) {
throw new \Exception("$actual occurrences of the '$element' element in '$parent' found");
}
}
/**
* Checks, that element with given CSS is enabled
*
* @Then the element :element should be enabled
*/
public function theElementShouldBeEnabled($element)
{
$node = $this->getSession()->getPage()->find('css', $element);
if ($node === null) {
throw new \Exception("There is no '$element' element");
}
if ($node->hasAttribute('disabled')) {
throw new \Exception("The element '$element' is not enabled");
}
}
/**
* Checks, that element with given CSS is disabled
*
* @Then the element :element should be disabled
*/
public function theElementShouldBeDisabled($element)
{
$this->not(function () use($element) {
$this->theElementShouldBeEnabled($element);
}, "The element '$element' is not disabled");
}
/**
* Checks, that given select box contains the specified option
*
* @Then the :select select box should contain :option
*/
public function theSelectBoxShouldContain($select, $option)
{
$select = str_replace('\\"', '"', $select);
$option = str_replace('\\"', '"', $option);
$obj = $this->getSession()->getPage()->findField($select);
if ($obj === null) {
throw new ElementNotFoundException(
$this->getSession(), 'select box', 'id|name|label|value', $select
);
}
$optionText = $obj->getText();
$message = "The '$select' select box does not contain the '$option' option";
$this->assertContains($option, $optionText, $message);
}
/**
* Checks, that given select box does not contain the specified option
*
* @Then the :select select box should not contain :option
*/
public function theSelectBoxShouldNotContain($select, $option)
{
$this->not(function () use($select, $option) {
$this->theSelectBoxShouldContain($select, $option);
}, "The '$select' select box does contain the '$option' option");
}
/**
* Checks, that the specified CSS element is visible
*
* @Then the :element element should be visible
*/
public function theElementShouldBeVisible($element)
{
$displayedNode = $this->getSession()->getPage()->find('css', $element);
if ($displayedNode === null) {
throw new \Exception("The element '$element' was not found anywhere in the page");
}
$message = "The element '$element' is not visible";
$this->assertTrue($displayedNode->isVisible(), $message);
}
/**
* Checks, that the specified CSS element is not visible
*
* @Then the :element element should not be visible
*/
public function theElementShouldNotBeVisible($element)
{
$exception = new \Exception("The element '$element' is visible");
$this->not(function () use($element) {
$this->theElementShouldBeVisible($element);
}, $exception);
}
/**
* Select a frame by its name or ID.
*
* @When (I )switch to iframe :name
* @When (I )switch to frame :name
*/
public function switchToIFrame($name)
{
$this->getSession()->switchToIFrame($name);
}
/**
* Go back to main document frame.
*
* @When (I )switch to main frame
*/
public function switchToMainFrame()
{
$this->getSession()->switchToIFrame();
}
/**
* Press keyboard key.
*
* @When (I )press key :char
* @When (I )press key :char on :element element
*/
public function pressKey($char, $modifier = null, $element = 'body')
{
$node = $this->getSession()->getPage()->find('css', $element);
if ($node === null) {
throw new \Exception("The element '$element' was not found anywhere in the page");
}
if (preg_match('#^([^\+]+)\+([^\+]+)$#', $char, $matches)){
$char = $matches[2];
$modifier = strtolower($matches[1]);
}
$this->getSession()->getDriver()->keyPress($node->getXPath(), $char, $modifier);
}
}