[rb] Adds support for the w3c silent option for the ruby library#14152
[rb] Adds support for the w3c silent option for the ruby library#14152titusfortner merged 2 commits intoSeleniumHQ:trunkfrom
Conversation
PR Reviewer Guide 🔍
|
PR Code Suggestions ✨
|
…eniumHQ#14152) Adds support for the w3c silent option for the ruby library Co-authored-by: aguspe <agustin.pe94@gmail.com>
User description
Description
While working on improving the documentation for the ruby library on this pr: SeleniumHQ/seleniumhq.github.io#1748
I noticed that the ruby library was throwing an error when the option silent was set to true for internet explorer, and that it was not implemented as it is in the js or java bindings
Motivation and Context
It's important that all the bindings support the same w3c options and that our documentation is up to day:
Current docs: https://www.selenium.dev/documentation/webdriver/browsers/internet_explorer/
Types of changes
Checklist
PR Type
Bug fix, Tests
Description
silentoption in the Internet Explorer options for the Ruby library.options.rbto include thesilentkey.options_spec.rbto verify thesilentoption is correctly set and handled.Changes walkthrough 📝
options.rb
Add support for `silent` option in IE optionsrb/lib/selenium/webdriver/ie/options.rb
silentoption in Internet Explorer options.silentkey.options_spec.rb
Add tests for `silent` option in IE optionsrb/spec/unit/selenium/webdriver/ie/options_spec.rb
silentoption in Internet Explorer options.silentoption is correctly set in various test cases.