Bug 1408431 - Fix symbol for Selenium logger in Ruby example. r?whimboo draft
authorAndreas Tolfsen <ato@sny.no>
Fri, 13 Oct 2017 16:18:54 +0100
changeset 680078 8fa871c1e866c0737fddbf8c850f9992bbd69e13
parent 680024 196dadb2fe500e75c6fbddcac78106648676cf10
child 735766 570aad03365cf4d065a166b2558be99e7f66bf79
push id84400
push userbmo:ato@sny.no
push dateFri, 13 Oct 2017 15:20:40 +0000
reviewerswhimboo
bugs1408431
milestone58.0a1
Bug 1408431 - Fix symbol for Selenium logger in Ruby example. r?whimboo DONTBUILD Thanks-to: Lucas Tierney <lucast1533@gmail.com> MozReview-Commit-ID: CoImF1FclrT
testing/geckodriver/doc/TraceLogs.md
--- a/testing/geckodriver/doc/TraceLogs.md
+++ b/testing/geckodriver/doc/TraceLogs.md
@@ -160,14 +160,14 @@ script’s current working directory.
 
 
 Ruby
 ----
 
 The Selenium [Ruby client] comes with an [`Options`] helper to
 generate the correct [`moz:firefoxOptions`] capabilities object:
 
-	Selenium::WebDriver.logger.level = :trace
+	Selenium::WebDriver.logger.level = :debug
 	opts = Selenium::WebDriver::Firefox::Options.new(log_level: :trace)
 	driver = Selenium::WebDriver.for :firefox, options: opts
 
 [Ruby client]: https://seleniumhq.github.io/selenium/docs/api/rb/
 [`Options`]: https://seleniumhq.github.io/selenium/docs/api/rb/Selenium/WebDriver/Firefox/Options.html