-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathMakesElementAssertions.php
More file actions
614 lines (474 loc) · 21.4 KB
/
MakesElementAssertions.php
File metadata and controls
614 lines (474 loc) · 21.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
<?php
declare(strict_types=1);
namespace Pest\Browser\Api\Concerns;
use Illuminate\Support\Str;
use Pest\Browser\Api\Webpage;
use PHPUnit\Framework\ExpectationFailedException;
/**
* @mixin Webpage
*/
trait MakesElementAssertions
{
/**
* Assert that the given element is focused.
*/
public function assertFocused(string $selector): Webpage
{
$selector = $this->guessLocator($selector)->selector();
$escapedSelector = json_encode($selector);
$isFocused = $this->page->evaluate("
() => {
const element = document.querySelector({$escapedSelector});
const focusedElement = document.activeElement;
return element && focusedElement ? element === focusedElement : false;
}
");
expect($isFocused)->toBeTrue("Expected element [{$selector}] to be focused on the page [{$this->initialUrl}], but it was not.");
return $this;
}
/**
* Assert that the given element is not focused.
*/
public function assertNotFocused(string $selector): Webpage
{
$selector = $this->guessLocator($selector)->selector();
$escapedSelector = json_encode($selector);
$isNotFocused = $this->page->evaluate("
() => {
const element = document.querySelector({$escapedSelector});
const focusedElement = document.activeElement;
return element && focusedElement ? element !== focusedElement : true;
}
");
expect($isNotFocused)->toBeTrue("Expected element [{$selector}] not to be focused on the page [{$this->initialUrl}], but it was.");
return $this;
}
/**
* Assert that the page title matches the given text.
*/
public function assertTitle(string|int|float $title): Webpage
{
$title = (string) $title;
expect($this->page->title())->toBe($title, "Expected page title to be '[{$title}]' but found '[{$this->page->title()}]' on the page initially with the url [{$this->initialUrl}].");
return $this;
}
/**
* Assert that the page title contains the given text.
*/
public function assertTitleContains(string|int|float $title): Webpage
{
$title = (string) $title;
$pageTitle = $this->page->title();
$message = "Expected page title to contain '[{$title}]' but found '[{$pageTitle}]' on the page initially with the url [{$this->initialUrl}].";
expect(str_contains($pageTitle, $title))->toBeTrue($message);
return $this;
}
/**
* Assert that the given text is present on the page.
*/
public function assertSee(string|int|float $text): Webpage
{
$text = (string) $text;
$locator = $this->page->unstrict(
fn () => $this->page->getByText($text),
);
foreach ($locator->all() as $element) {
if ($element->isVisible()) {
expect(true)->toBeTrue();
return $this;
}
}
throw new ExpectationFailedException(
"Expected to see text [{$text}] on the page initially with the url [{$this->initialUrl}], but it was not found or not visible.",
);
}
/**
* Assert that the given text is not present on the page.
*/
public function assertDontSee(string|int|float $text): Webpage
{
$text = (string) $text;
$locator = $this->page->unstrict(
fn () => $this->page->getByText($text),
);
foreach ($locator->all() as $element) {
if ($element->isVisible()) {
throw new ExpectationFailedException(
"Expected not to see text [{$text}] on the page initially with the url [{$this->initialUrl}], but it was found.",
);
}
}
expect(true)->toBeTrue();
return $this;
}
/**
* Assert that the given text is present within the selector.
*/
public function assertSeeIn(string $selector, string|int|float $text): Webpage
{
$text = (string) $text;
$locator = $this->guessLocator($selector);
expect($locator->getByText($text)->isVisible())->toBeTrue("Expected to see text [{$text}] within element [{$selector}] on the page initially with the url [{$this->initialUrl}], but it was not found or not visible.");
return $this;
}
/**
* Assert that the given text is not present within the selector.
*/
public function assertDontSeeIn(string $selector, string|int|float $text): Webpage
{
$text = (string) $text;
$locator = $this->guessLocator($selector);
expect($locator->getByText($text)->count())->toBe(0, "Expected not to see text [{$text}] within element [{$selector}] on the page initially with the url [{$this->initialUrl}], but it was found.");
return $this;
}
/**
* Assert that any text is present within the selector.
*/
public function assertSeeAnythingIn(string $selector): Webpage
{
$text = $this->guessLocator($selector)->textContent();
expect($text)->not->toBeEmpty("Expected element [{$selector}] to contain some text on the page initially with the url [{$this->initialUrl}], but it was empty.");
return $this;
}
/**
* Assert that no text is present within the selector.
*/
public function assertSeeNothingIn(string $selector): Webpage
{
$text = $this->guessLocator($selector)->textContent();
expect($text)->toBeEmpty("Expected element [{$selector}] to be empty on the page initially with the url [{$this->initialUrl}], but it contained text: [{$text}].");
return $this;
}
/**
* Assert that a given element is present a given amount of times.
*/
public function assertCount(string $selector, int $expected): Webpage
{
$count = $this->guessLocator($selector)->count();
expect($count)->toBe($expected, "Expected to find {$expected} elements matching [{$selector}] on the page initially with the url [{$this->initialUrl}], but found {$count}.");
return $this;
}
/**
* Assert that the given JavaScript expression evaluates to the given value.
*/
public function assertScript(string $expression, mixed $expected = true): Webpage
{
if (! Str::contains($expression, ['===', '!==', '==', '!=', '>', '<', '>=', '<=', '&&', '||']) && ! Str::startsWith($expression, 'return ') && ! Str::startsWith($expression, 'function')) {
$expression = "function() { return {$expression}; }";
}
$result = $this->page->evaluate($expression);
if (is_bool($expected)) {
$expectedStr = $expected ? 'true' : 'false';
} elseif (is_string($expected)) {
$expectedStr = "'{$expected}'";
} elseif (is_scalar($expected) || is_null($expected)) {
$expectedStr = (string) $expected;
} else {
$expectedStr = gettype($expected);
}
// Format result value for display
if (is_bool($result)) {
$resultStr = $result ? 'true' : 'false';
} elseif (is_string($result)) {
$resultStr = "'{$result}'";
} elseif (is_scalar($result) || is_null($result)) {
$resultStr = (string) $result;
} else {
$resultStr = gettype($result);
}
expect($result)->toBe($expected, "Expected JavaScript expression [{$expression}] to evaluate to {$expectedStr} on the page initially with the url [{$this->initialUrl}], but got {$resultStr}.");
return $this;
}
/**
* Assert that the given source code is present on the page.
*/
public function assertSourceHas(string $code): Webpage
{
$content = $this->page->content();
$message = "Expected page source to contain [{$code}] on the page initially with the url [{$this->initialUrl}], but it was not found.";
expect(str_contains($content, $code))->toBeTrue($message);
return $this;
}
/**
* Assert that the given source code is not present on the page.
*/
public function assertSourceMissing(string $code): Webpage
{
$content = $this->page->content();
$message = "Expected page source not to contain [{$code}] on the page initially with the url [{$this->initialUrl}], but it was found.";
expect(str_contains($content, $code))->toBeFalse($message);
return $this;
}
/**
* Assert that the given link is present on the page.
*/
public function assertSeeLink(string $link): Webpage
{
$locator = $this->guessLocator($link);
expect($locator->isVisible())->toBeTrue("Expected to see link with text [{$link}] on the page initially with the url [{$this->initialUrl}], but it was not found or not visible.");
return $this;
}
/**
* Assert that the given link is not present on the page.
*/
public function assertDontSeeLink(string $link): Webpage
{
$locator = $this->guessLocator($link);
expect($locator->count())->toBe(0, "Expected not to see link with text [{$link}] on the page initially with the url [{$this->initialUrl}], but it was found.");
return $this;
}
/**
* Assert that the given checkbox is checked.
*/
public function assertChecked(string $field, string|int|float|null $value = null): Webpage
{
$value = $value !== null ? (string) $value : null;
$valueDescription = $value !== null ? " with value [{$value}]" : '';
expect($this->guessLocator($field, $value)->isChecked())->toBeTrue("Expected checkbox [{$field}]{$valueDescription} to be checked on the page initially with the url [{$this->initialUrl}], but it was not.");
return $this;
}
/**
* Assert that the given checkbox is not checked.
*/
public function assertNotChecked(string $field, string|int|float|null $value = null): Webpage
{
$value = $value !== null ? (string) $value : null;
$valueDescription = $value !== null ? " with value [{$value}]" : '';
expect($this->guessLocator($field, $value)->isChecked())->toBeFalse("Expected checkbox [{$field}]{$valueDescription} not to be checked on the page initially with the url [{$this->initialUrl}], but it was.");
return $this;
}
/**
* Assert that the given checkbox is in an indeterminate state.
*/
public function assertIndeterminate(string $field, string|int|float|null $value = null): Webpage
{
$value = $value !== null ? (string) $value : null;
$this->assertNotChecked($field, $value);
$selector = $this->guessLocator($field, $value)->selector();
$escapedSelector = json_encode($selector);
$isIndeterminate = $this->page->evaluate("
() => {
const element = document.querySelector({$escapedSelector});
return element ? element.indeterminate === true : false;
}
");
$valueDescription = $value !== null ? " with value [{$value}]" : '';
expect($isIndeterminate)->toBeTrue("Expected checkbox [{$field}]{$valueDescription} to be in indeterminate state on the page initially with the url [{$this->initialUrl}], but it was not.");
return $this;
}
/**
* Assert that the given radio field is selected.
*/
public function assertRadioSelected(string $field, string|int|float $value): Webpage
{
$value = (string) $value;
expect($this->guessLocator($field, $value)->isChecked())->toBeTrue("Expected radio button [{$field}] with value [{$value}] to be selected on the page initially with the url [{$this->initialUrl}], but it was not.");
return $this;
}
/**
* Assert that the given radio field is not selected.
*/
public function assertRadioNotSelected(string $field, string|int|float|null $value = null): Webpage
{
$value = $value !== null ? (string) $value : null;
if ($value !== null) {
expect($this->guessLocator($field, $value)->isChecked())->toBeFalse("Expected radio button [{$field}] with value [{$value}] not to be selected on the page initially with the url [{$this->initialUrl}], but it was.");
return $this;
}
$locator = $this->guessLocator($field);
$count = $locator->count();
$anyChecked = false;
for ($i = 0; $i < $count; $i++) {
$radio = $locator->nth($i);
if ($radio->isChecked()) {
$anyChecked = true;
break;
}
}
expect($anyChecked)->toBeFalse("Expected no radio buttons in group [{$field}] to be selected on the page initially with the url [{$this->initialUrl}], but at least one was selected.");
return $this;
}
/**
* Assert that the given dropdown has the given value selected.
*/
public function assertSelected(string $field, string|int|float $value): Webpage
{
$value = (string) $value;
$locator = $this->guessLocator($field);
$actual = $locator->inputValue();
expect($actual)->toBe($value, "Expected dropdown [{$field}] to have value [{$value}] selected on the page initially with the url [{$this->initialUrl}], but found [{$actual}].");
return $this;
}
/**
* Assert that the given dropdown does not have the given value selected.
*/
public function assertNotSelected(string $field, string|int|float $value): Webpage
{
$value = (string) $value;
$locator = $this->guessLocator($field);
$actual = $locator->inputValue();
expect($actual)->not->toBe($value, "Expected dropdown [{$field}] not to have value [{$value}] selected on the page initially with the url [{$this->initialUrl}], but it was.");
return $this;
}
/**
* Assert that the element matching the given selector has the given value.
*/
public function assertValue(string $field, string|int|float $value): Webpage
{
$value = (string) $value;
$locator = $this->guessLocator($field);
expect($actual = $locator->inputValue())->toBe($value, "Expected element [{$field}] to have value [{$value}] on the page initially with the url [{$this->initialUrl}], but found [{$actual}].");
return $this;
}
/**
* Assert that the element matching the given selector does not have the given value.
*/
public function assertValueIsNot(string $selector, string|int|float $value): Webpage
{
$value = (string) $value;
$actual = $this->guessLocator($selector)->inputValue();
expect($actual)->not->toBe($value, "Expected element [{$selector}] not to have value [{$value}] on the page initially with the url [{$this->initialUrl}], but it did.");
return $this;
}
/**
* Assert that the element matching the given selector has the given value in the provided attribute.
*/
public function assertAttribute(string $selector, string $attribute, string|int|float $value): Webpage
{
$value = (string) $value;
$actual = $this->guessLocator($selector)->getAttribute($attribute);
expect($actual)->toBe($value, "Expected element [{$selector}] to have attribute [{$attribute}] with value [{$value}] on the page initially with the url [{$this->initialUrl}], but found [{$actual}].");
return $this;
}
/**
* Assert that the element matching the given selector is missing the provided attribute.
*/
public function assertAttributeMissing(string $selector, string $attribute): Webpage
{
$actual = $this->guessLocator($selector)->getAttribute($attribute);
expect($actual)->toBeNull("Expected element [{$selector}] not to have attribute [{$attribute}] on the page initially with the url [{$this->initialUrl}], but it had value [{$actual}].");
return $this;
}
/**
* Assert that the element matching the given selector contains the given value in the provided attribute.
*/
public function assertAttributeContains(string $selector, string $attribute, string|int|float $value): Webpage
{
$value = (string) $value;
$attributeValue = $this->guessLocator($selector)->getAttribute($attribute);
expect($attributeValue)->not->toBeNull("Expected element [{$selector}] to have attribute [{$attribute}] on the page initially with the url [{$this->initialUrl}], but it was not found.");
$message = "Expected attribute [{$attribute}] of element [{$selector}] to contain [{$value}] on the page initially with the url [{$this->initialUrl}], but found [{$attributeValue}].";
expect(str_contains((string) $attributeValue, $value))->toBeTrue($message);
return $this;
}
/**
* Assert that the element matching the given selector does not contain the given value in the provided attribute.
*/
public function assertAttributeDoesntContain(string $selector, string $attribute, string|int|float $value): Webpage
{
$value = (string) $value;
$attributeValue = $this->guessLocator($selector)->getAttribute($attribute);
if ($attributeValue === null) {
return $this;
}
$message = "Expected attribute [{$attribute}] of element [{$selector}] not to contain [{$value}] on the page initially with the url [{$this->initialUrl}], but found [{$attributeValue}].";
expect(str_contains($attributeValue, $value))->toBeFalse($message);
return $this;
}
/**
* Assert that the element matching the given selector has the given value in the provided aria attribute.
*/
public function assertAriaAttribute(string $selector, string $attribute, string|int|float $value): Webpage
{
$value = (string) $value;
return $this->assertAttribute($selector, 'aria-'.$attribute, $value);
}
/**
* Assert that the element matching the given selector has the given value in the provided data attribute.
*/
public function assertDataAttribute(string $selector, string $attribute, string|int|float $value): Webpage
{
$value = (string) $value;
return $this->assertAttribute($selector, 'data-'.$attribute, $value);
}
/**
* Assert that the element matching the given selector is visible.
*/
public function assertVisible(string $selector): Webpage
{
$locator = $this->guessLocator($selector);
expect($locator->isVisible())->toBeTrue("Expected element [{$selector}] to be visible on the page initially with the url [{$this->initialUrl}], but it was not.");
return $this;
}
/**
* Assert that the element matching the given selector is present.
*/
public function assertPresent(string $selector): Webpage
{
$count = $this->guessLocator($selector)->count();
expect($count)->toBeGreaterThan(0, "Expected element [{$selector}] to be present in the DOM on the page initially with the url [{$this->initialUrl}], but it was not found.");
return $this;
}
/**
* Assert that the element matching the given selector is not present in the source.
*/
public function assertNotPresent(string $selector): Webpage
{
$count = $this->guessLocator($selector)->count();
expect($count)->toBe(0, "Expected element [{$selector}] not to be present in the DOM on the page initially with the url [{$this->initialUrl}], but it was found.");
return $this;
}
/**
* Assert that the element matching the given selector is not visible.
*/
public function assertMissing(string $selector): Webpage
{
$locator = $this->guessLocator($selector);
expect($locator->isVisible())->toBeFalse("Expected element [{$selector}] not to be visible on the page initially with the url [{$this->initialUrl}], but it was.");
return $this;
}
/**
* Assert that the given field is enabled.
*/
public function assertEnabled(string $field): Webpage
{
expect($this->guessLocator($field)->isEnabled())->toBeTrue("Expected field [{$field}] to be enabled on the page initially with the url [{$this->initialUrl}], but it was disabled.");
return $this;
}
/**
* Assert that the given field is disabled.
*/
public function assertDisabled(string $field): Webpage
{
expect($this->guessLocator($field)->isDisabled())->toBeTrue("Expected field [{$field}] to be disabled on the page initially with the url [{$this->initialUrl}], but it was enabled.");
return $this;
}
/**
* Assert that the given button is enabled.
*/
public function assertButtonEnabled(string $button): Webpage
{
$selector = $this->guessLocator($button);
expect($selector->isEnabled())->toBeTrue("Expected button [{$button}] to be enabled on the page initially with the url [{$this->initialUrl}], but it was disabled.");
return $this;
}
/**
* Assert that the given button is disabled.
*/
public function assertButtonDisabled(string $button): Webpage
{
$selector = $this->guessLocator($button);
expect($selector->isDisabled())->toBeTrue("Expected button [{$button}] to be disabled on the page initially with the url [{$this->initialUrl}], but it was enabled.");
return $this;
}
/**
* Wait for the given text to appear on the page.
*
* @deprecated Use `assertSee` instead.
*/
public function waitForText(string|int|float $text): Webpage
{
$text = (string) $text;
return $this->assertSee($text);
}
}