Skip to content

Commit 57f644a

Browse files
authored
Fix incorrect quotes in cookies example (baijum#110)
1 parent 0e64cdf commit 57f644a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

source/navigating.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ that the cookie will be valid for:
226226
driver.get("http://www.example.com")
227227

228228
# Now set the cookie. This one's valid for the entire domain
229-
cookie = {name : foo’, ‘value : bar}
229+
cookie = {'name' : 'foo', 'value' : 'bar'}
230230
driver.add_cookie(cookie)
231231

232232
# And now output all the available cookies for the current URL

0 commit comments

Comments
 (0)