Skip to content

Commit 9533da5

Browse files
committed
Merge pull request php-webdriver#261 from WanderingZombie/patch-1
add missing single quotes
2 parents a6e209a + 1bd5449 commit 9533da5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
$link->click();
3333

3434
// print the title of the current page
35-
echo "The title is " . $driver->getTitle() . "'\n";
35+
echo "The title is '" . $driver->getTitle() . "'\n";
3636

3737
// print the URI of the current page
38-
echo "The current URI is " . $driver->getCurrentURL() . "'\n";
38+
echo "The current URI is '" . $driver->getCurrentURL() . "'\n";
3939

4040
// Search 'php' in the search box
4141
$input = $driver->findElement(

0 commit comments

Comments
 (0)