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
687 lines (620 loc) · 22.4 KB
/
Copy pathBrowserContext.php
File metadata and controls
687 lines (620 loc) · 22.4 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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
<?php
namespace Sanpi\Behatch\Context;
/**
* Set this to your local timezone
*/
date_default_timezone_set('America/New_York');
use Behat\Gherkin\Node\TableNode;
use Behat\Mink\Exception\ExpectationException;
use Behat\Mink\Exception\ResponseTextException;
use Behat\Mink\Exception\ElementNotFoundException;
use Behat\Behat\Context\Context;
use Behat\Behat\Context\SnippetAcceptingContext;
class BrowserContext extends BaseContext implements Context, SnippetAcceptingContext
{
private $timeout;
private $dateFormat = 'dmYHi';
public function __construct($timeout = 1)
{
$this->timeout = $timeout;
}
/**
* @AfterScenario
*/
public function closeBrowser()
{
$this->getSession()->stop();
}
/**
* Sets browser window to custom size
* Example: When I set browser window size to "800" x "400"
* Example: And I set browser window size to "2880" x "1800"
*
* @Given (I )set my browser window size to :width x :height
* @param string $width, $height The message.
*/
public function iSetMyBrowserWindowSizeToX($width, $height) {
$this->getSession()->getDriver()->resizeWindow((int)$width, (int)$height, 'current');
}
/**
* Sets browser window to 1440 by 900
* Example: When I set my browser window size to MacBook Standard
* Example: And I set my browser window size to MacBook Standard
*
* @Given (I )set my browser window size to MacBook Air
*/
public function iSetMyBrowserWindowSizeToMacbookStandard()
{
$this->getSession()->getDriver()->resizeWindow((int)'1440', (int)'900', 'current');
}
/**
* Sets browser window to 2880 by 1800
* Example: When I set my browser window size to 15 inch MacBook Retina
* Example: And I set my browser window size to 15 inch MacBook Retina
*
* @Given I set my browser window size to 15 inch MacBook Retina
*/
public function iSetMyBrowserWindowSizeTo15InchMacbookRetina()
{
$this->getSession()->getDriver()->resizeWindow((int)'2880', (int)'1800', 'current');
}
/**
* Sets browser window to 2560 by 1600
* Example: When I set my browser window size to 13 inch MacBook Retina
* Example: And I set my browser window size to 13 inch MacBook Retina
*
* @Given (I )set my browser window size to 13 inch MacBook Retina
*/
public function iSetMyBrowserWindowSizeTo13InchMacbookRetina()
{
$this->getSession()->getDriver()->resizeWindow((int)'2560', (int)'1600', 'current');
}
/**
* Sets browser window to 1280 by 1280
* Example: When I set my browser window size to Windows Standard
* Example: And I set my browser window size to Windows Standard
*
* @Given (I )set my browser window size to Windows Standard
*/
public function iSetMyBrowserWindowSizeToWindowsStandard()
{
$this->getSession()->getDriver()->resizeWindow((int)'1280', (int)'1280', 'current');
}
/**
* Set login / password for next HTTP authentication
* Example: When I set authentication with "bwayne" and "iLoveBats"
* Example: And I set authentication with "bwayne" and "iLoveBats"
*
* @When (I )set basic authentication with :user and :password
* @param $user
* @param $password
*/
public function iSetBasicAuthenticationWithAnd($user, $password)
{
$this->getSession()->setBasicAuth($user, $password);
}
//Go to URL with parameters
/**
* Open url with various parameters
* Change line:128 $url variable to url of choice
* Example: Given I am on url composed by:
* | parameters |
* | /heroes |
* | /batman |
* Example: When I am on url composed by:
* | parameters |
* | /heroes |
* | /batman |
* Example: And I am on url composed by:
* | parameters |
* | /heroes |
* | /batman |
*
* @Given (I )am on url composed by:
* @param TableNode $tableNode
*/
public function iAmOnUrlComposedBy(TableNode $tableNode)
{
$url = '';
foreach ($tableNode->getHash() as $hash) {
$url .= $hash['parameters'];
}
return $this->getMinkContext()
->visit($url);
}
//Clicks CSS element
/**
* Clicks on the nth CSS element
* Example: When I click on 1st "ul li a" element
* Example: And I click on 6th "ul li a" element
*
* @When (I )click on the :index :element element
*/
public function iClickOnTheNthElement($index, $element)
{
$nodes = $this->getSession()->getPage()->findAll('css', $element);
if (isset($nodes[$index - 1])) {
$nodes[$index - 1]->click();
}
else {
throw new \Exception("The element '$element' number $index was not found anywhere in the page");
}
}
/**
* Confirms the popup with "OK" press
* Example: When I confirm the popup
* Example: And I confirm the popup
*
* @When /^I confirm the popup$/
*/
public function confirmPopup()
{
$this->getSession()->getDriver()->getWebDriverSession()->accept_alert();
}
/**
* Cancels the popup with "OK" press
* Example: When I cancel the popup
* Example: And I cancel the popup
*
* @When /^(?:|I )cancel the popup$/
*/
public function cancelPopup()
{
$this->getSession()->getDriver()->getWebDriverSession()->dismiss_alert();
}
/**
* Asserts string in popup
* Example: And I should see "Bruce Wayne is not Batman" in popup
* Example: Then I should see "Bruce Wayne is not Batman" in popup
*
* @When /^I should see "([^"]*)" in popup$/
* @param string $message The message.
* @throws Exception
*/
public function assertPopupMessage($message)
{
$alertText = $this->getSession()->getDriver()->getWebDriverSession()->getAlert_text();
if ($alertText !== $message){
throw new Exception("Modal dialog present: $alertText, when expected was $message");
}
}
/**
* Fills out popup field with text
* Example: When I fill "Then why does he hang out with Dick Grayson?" in popup
* Example: And I fill "Then why does he hang out with Dick Grayson?" in popup
*
* @When /^(?:|I )fill "([^"]*)" in popup$/
* @param string $message The message.
*/
public function setPopupText($message)
{
$this->getSession()->getDriver()->getWebDriverSession()->postAlert_text($message);
}
/**
* Scrolls to the bottom of the given page
* Example: When I scroll to the bottom
* Example: And I scroll to the bottom
*
* @Given /^I scroll to the bottom$/
*/
public function iScrollToBottom() {
$javascript = 'window.scrollTo(0, Math.max(document.documentElement.scrollHeight, document.body.scrollHeight, document.documentElement.clientHeight));';
$this->getSession()->executeScript($javascript);
}
/**
* Scrolls to the top of the given page
* Example: When I scroll to the top
* Example: And I scroll to the top
*
* @Given /^I scroll to the top$/
*/
public function iScrollToTop() {
$this->getSession()->executeScript('window.scrollTo(0,0);');
}
/**
* Scroll to a certain element by label.
* Requires an "id" attribute to uniquely identify the element in the document.
* Example: Given I scroll to the "Submit" button
* Example: Given I scroll to the "My Date" field
*
* @Given /^I scroll to the "([^"]*)" (field|link|button)$/
*/
public function iScrollToField($locator, $type) {
$page = $this->getSession()->getPage();
$el = $page->find('named', array($type, $locator));
# assertNotNull($el, sprintf('%s element not found', $locator));
$id = $el->getAttribute('id');
if(empty($id)) {
throw new \InvalidArgumentException('Element requires an "id" attribute');
}
$js = sprintf("document.getElementById('%s').scrollIntoView(true);", $id);
$this->getSession()->executeScript($js);
}
/**
* Restarts Selenium session
* Example: Given I am on a new session
* Example: And I am on a new session
*
* @Given /^I am on a new session$/
*/
public function iAmOnANewSession()
{
$this->getSession()->restart();
}
/**
* Clicks on element via XPath
* Example: When I click on the element with xpath '//*[@id="find-out-who-batman-is"]'
* Example: And I click on the element with xpath '//*[@id="find-out-who-batman-is"]'
*
* @When /^I click on the element with xpath \'([^\']*)\'$/
* @Given /^I click on the element with xpath "([^"]*)"$/
* @param string $xpath is an XPath for an object
*/
public function iClickOnTheElementWithXPath($xpath)
{
$session = $this->getSession(); // get the mink session
$element = $session->getPage()->find(
'xpath',
$session->getSelectorsHandler()->selectorToXpath('xpath', $xpath)
); // runs the actual query and returns the element
// errors must not pass silently
if (null === $element) {
throw new \InvalidArgumentException(sprintf('Could not evaluate XPath: "%s"', $xpath));
}
// ok, let's click on it
$element->click();
}
//Follows XPath element
//TODO: Fix this function
/**
* THIS FUNCTION IS CURRENTLY DEPRECATED AND NEEDS TLC
* Click on the nth specified link
* Example: When I click on 1st "ul li a" link
* Example: And I click on 6th "ul li a" link
*
* @When (I )follow the :index :link link
*/
public function iFollowTheNthLink($index, $link)
{
$page = $this->getSession()->getPage();
$links = $page->findAll('named', [
'link', $this->getSession()->getSelectorsHandler()->xpathLiteral($link)
]);
if (!isset($links[$index - 1])) {
throw new \Exception("The $index element '$link' was not found anywhere in the page");
}
$links[$index - 1]->click();
}
/**
* Fills in form field with current date
* Example: When I fill in "unix-date" with the current date
* Example: And I fill in "unix-date" with the 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 string to time (strtotime) modifier
* Example: When I fill in "unix-date" with the current date and modifier "+1 day"
* Example: And I fill in "unix-date" with the current date
*
* @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
* Example: When I hover "large-button"
* Example: And I hover "large-button"
*
* @When (I )hover :element
*/
public function iHoverIShouldSeeIn($element)
{
$node = $this->getSession()->getPage()->find('css', $element);
if ($node === null) {
throw new \Exception("The hoverable element '$element' was not found anywhere in the page");
}
$node->mouseOver();
}
/**
* Save value of the field in parameters array
* Example: When I save the value of "name" in the "name" parameter
* Example: And I save the value of "name" in the "name" parameter
*
* @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
* Example: When I wait 3 seconds until I see "Hello, Bruce Wayne"
* Example: And I wait 3 seconds until I see "Hello, Bruce Wayne"
*
* @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
* Example: When I wait until I see "Hello, Bruce Wayne"
* Example: And I wait until I see "Hello, Bruce Wayne"
*
* @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
* Example: When I wait 3 seconds until I see "Hello, Bruce Wayne" in the "nav" element
* Example: And I wait 3 seconds until I see "Hello, Bruce Wayne" in the "nav" element
*
* @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);
}
/**
* Checks, that the element contains specified text after timeout
* Example: When I wait until I see "Hello, Bruce Wayne" in the "nav" element
* Example: And I wait until I see "Hello, Bruce Wayne" in the "nav" element
*
* @Then (I )wait until I see :text in the :element element
*/
public function iWaitUntilISeeInTheElement($text, $element)
{
$this->iWaitSecondsUntilISeeInTheElement($this->timeout, $text, $element);
}
/**
* Wait for a element
* Example: When I wait 2 seconds for "sign-up" element
* Example: And I wait 3 seconds for "sign-up" 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);
}
}
/**
* Checks, that the page should contains specified element after timeout
* Example: When I wait for "sign-up" element
* Example: And I wait for "sign-up" element
*
* @Then (I )wait for :element element
*/
public function iWaitForElement($element)
{
$this->iWaitSecondsForElement($this->timeout, $element);
}
/**
* Waits seconds
* Example: When I wait 2 second
* Example: And I wait 3 seconds
*
* @Then (I )wait :count second(s)
*
*/
public function iWaitSeconds($count)
{
sleep($count);
}
/**
* Waits seconds
* Example: When I wait for 9 seconds
* Example: And I wait for 8 seconds
*
* @Given /^I wait for (\d+) seconds$/
*
*/
public function iWaitForSeconds($seconds)
{
$this->getSession()->wait($seconds*1000);
}
/**
* Asserts against number of elements in a response
* Example: Then I should see 80 "div" in the 1st "body"
* Example: And I should see 10 "li" in the 1st "body"
*
* @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");
}
}
/**
* Asserts against number of elements in a response
* Example: Then I should see less than 199 "div" in the 1st "body"
* Example: And I should see less than 200 "li" in the 1st "body"
*
* @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");
}
}
/**
* Asserts against number of elements in a response
* Example: Then I should see more than 10 "div" in the 1st "body"
* Example: And I should see more than 1 "li" in the 1st "body"
*
* @Then (I )should see more than :count :element in the :index :parent
*
* @param $count
* @param $element
* @param $index
* @param $parent
* @throws \Exception
*/
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
* Example: Then the element ".btn .btn-default" should be enabled
* Example: And the element ".btn .btn-default" should be enabled
*
* @Then the element :element should be enabled
* @param $element
* @throws \Exception
*/
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
* Example: Then the element ".btn .btn-default" should be disabled
* Example: And the element ".btn .btn-default" should be 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
* Example: Then the "heroes" select box should contain "Batman"
* Example: And the "heroes" select box should contain "Batman"
*
* @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
* Example: Then the "heroes" select box should not contain "Superman"
* Example: And the "heroes" select box should not contain "Superman"
*
* @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
* Example: Then the ".btn" element should be visible
* Example: And the ".btn" element should be 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
* Example: Then the ".btn" element should not be visible
* Example: And the ".btn" element should not be 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
* Example: When I switch to iframe "justAnotherIframe"
* Example: And I switch to frame "justAnotherIframe"
*
* @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
* Example: When I switch to main frame
* Example: And I switch to main frame
*
* @When (I )switch to main frame
*/
public function switchToMainFrame()
{
$this->getSession()->switchToIFrame();
}
}