Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mozilla/geckodriver.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/TraceLogs.md')
-rw-r--r--doc/TraceLogs.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/TraceLogs.md b/doc/TraceLogs.md
index 787a6cb..791f838 100644
--- a/doc/TraceLogs.md
+++ b/doc/TraceLogs.md
@@ -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
script’s current working directory.