We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf180f commit 56d669eCopy full SHA for 56d669e
rb/lib/selenium/webdriver/remote/capabilities.rb
@@ -63,9 +63,7 @@ def chrome(opts = {})
63
new({
64
browser_name: 'chrome',
65
javascript_enabled: true,
66
- css_selectors_enabled: true,
67
- loggingPrefs: {browser: 'ALL',
68
- driver: 'ALL'}
+ css_selectors_enabled: true
69
}.merge(opts))
70
end
71
rb/spec/integration/selenium/webdriver/options_spec.rb
@@ -51,7 +51,8 @@ module WebDriver
51
52
53
# Phantomjs Returns har instead of driver
54
- not_compliant_on browser: :phantomjs do
+ # Chrome - turned off by default
55
+ not_compliant_on browser: [:phantomjs, :chrome] do
56
it 'can get the driver log' do
57
driver.navigate.to url_for('simpleTest.html')
58
0 commit comments