We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d5b5b4 commit dc104a2Copy full SHA for dc104a2
1 file changed
index.rst
@@ -446,7 +446,7 @@ browser emulator with it:
446
echo $session->getPage()->getContent();
447
448
// open another page:
449
- $session->visit('http://my_project.dev/second_page.php')
+ $session->visit('http://my_project.dev/second_page.php');
450
451
// use history controls:
452
$session->reload();
@@ -460,7 +460,8 @@ browser emulator with it:
460
461
// wait for n milliseconds or
462
// till JS expression becomes true:
463
- $session->wait(5000,
+ $session->wait(
464
+ 5000,
465
"$('.suggestions-results').children().length > 0"
466
);
467
0 commit comments