Skip to content

Commit

Permalink
Fix incorrect quotes in cookies example (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShockwaveNN authored Dec 7, 2022
1 parent 0e64cdf commit 57f644a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/navigating.rst
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ that the cookie will be valid for:
driver.get("http://www.example.com")

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

# And now output all the available cookies for the current URL
Expand Down

0 comments on commit 57f644a

Please sign in to comment.