Skip to content

Commit

Permalink
Allow to disable native events when initializing IE::Options
Browse files Browse the repository at this point in the history
  • Loading branch information
p0deje committed Jan 22, 2019
1 parent 2e86040 commit a694f54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rb/lib/selenium/webdriver/ie/options.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class Options
def initialize(**opts)
@args = Set.new(opts.delete(:args) || [])
@options = opts
@options[:native_events] ||= true
@options[:native_events] = true if @options[:native_events].nil?
end

#
Expand Down

0 comments on commit a694f54

Please sign in to comment.