Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ browser emulator with it:
echo $session->getPage()->getContent();

// open another page:
$session->visit('http://my_project.dev/second_page.php')
$session->visit('http://my_project.dev/second_page.php');

// use history controls:
$session->reload();
Expand All @@ -460,7 +460,8 @@ browser emulator with it:

// wait for n milliseconds or
// till JS expression becomes true:
$session->wait(5000,
$session->wait(
5000,
"$('.suggestions-results').children().length > 0"
);

Expand Down