Bug 1519925 - [geckodriver] Fix trace log documentation for options in Selenium Python binding. r=me

--HG--
extra : rebase_source : 94b4395dd8d0762ba9d3abcce14f5395e1e3d84c
This commit is contained in:
Henrik Skupin 2019-01-15 11:28:08 +01:00
parent 88602869fa
commit 86d63a9376

View file

@ -140,7 +140,7 @@ As with C#, the log output is helpfully propagated to stdout.
Python
------
The Selenium [Python client] comes with an
The Selenium [Python client] comes with a
[`selenium.webdriver.firefox.options.Options`] helper that can
be used programmatically to construct the [`moz:firefoxOptions`]
capabilities object:
@ -150,7 +150,7 @@ capabilities object:
opts = Options()
opts.log.level = "trace"
driver = Firefox(firefox_options=opts)
driver = Firefox(options=opts)
The log output is stored in a file called _geckodriver.log_ in your
scripts current working directory.