Skip to content

Commit dc104a2

Browse files
author
Alex Ross
committed
Add semi-colon to the Basic Browser Interaction example
1 parent 8d5b5b4 commit dc104a2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

index.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ browser emulator with it:
446446
echo $session->getPage()->getContent();
447447
448448
// open another page:
449-
$session->visit('http://my_project.dev/second_page.php')
449+
$session->visit('http://my_project.dev/second_page.php');
450450
451451
// use history controls:
452452
$session->reload();
@@ -460,7 +460,8 @@ browser emulator with it:
460460
461461
// wait for n milliseconds or
462462
// till JS expression becomes true:
463-
$session->wait(5000,
463+
$session->wait(
464+
5000,
464465
"$('.suggestions-results').children().length > 0"
465466
);
466467

0 commit comments

Comments
 (0)