class Capybara::Selenium::EdgeNode
Public Instance Methods
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 41 def click(*, **) super rescue Selenium::WebDriver::Error::InvalidArgumentError => e tag_name, type = attrs(:tagName, :type).map { |val| val&.downcase } if tag_name == 'input' && type == 'file' raise Selenium::WebDriver::Error::InvalidArgumentError, "EdgeChrome can't click on file inputs.\n#{e.message}" end raise end
Calls superclass method
Capybara::Selenium::Node#click
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 52 def disabled? return super unless chrome_edge? driver.evaluate_script("arguments[0].matches(':disabled, select:disabled *')", self) end
Calls superclass method
Capybara::Selenium::Node#disabled?
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 35 def drop(*args) return super unless chrome_edge? html5_drop(*args) end
Calls superclass method
Capybara::Selenium::Node#drop
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 58 def select_option return super unless chrome_edge? # To optimize to only one check and then click selected_or_disabled = driver.evaluate_script(<<~JS, self) arguments[0].matches(':disabled, select:disabled *, :checked') JS click unless selected_or_disabled end
Calls superclass method
Capybara::Selenium::Node#select_option
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 80 def send_keys(*args) args.chunk { |inp| inp.is_a?(String) && inp.match?(/\p{Emoji Presentation}/) } .each do |contains_emoji, inputs| if contains_emoji inputs.join.grapheme_clusters.chunk { |gc| gc.match?(/\p{Emoji Presentation}/) } .each do |emoji, clusters| if emoji driver.send(:execute_cdp, 'Input.insertText', text: clusters.join) else super(clusters.join) end end else super(*inputs) end end end
Calls superclass method
Capybara::Selenium::Node#send_keys
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 17 def set_file(value) # rubocop:disable Naming/AccessorMethodName # In Chrome 75+ files are appended (due to WebDriver spec - why?) so we have to clear here if its multiple and already set if chrome_edge? driver.execute_script(<<~JS, self) if (arguments[0].multiple && arguments[0].files.length){ arguments[0].value = null; } JS end super rescue *file_errors => e if e.message.match?(/File not found : .+\n.+/m) raise ArgumentError, "Selenium < 3.14 with remote Chrome doesn't support multiple file upload" end raise end
Calls superclass method
Capybara::Selenium::Node#set_file
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 8 def set_text(value, clear: nil, **_unused) return super unless chrome_edge? super.tap do # React doesn't see the chromedriver element clear send_keys(:space, :backspace) if value.to_s.empty? && clear.nil? end end
Calls superclass method
Capybara::Selenium::Node#set_text
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 68 def visible? return super unless chrome_edge? && native_displayed? begin bridge.send(:execute, :is_element_displayed, id: native_id) rescue Selenium::WebDriver::Error::UnknownCommandError # If the is_element_displayed command is unknown, no point in trying again driver.options[:native_displayed] = false super end end
Calls superclass method
Capybara::Selenium::Node#visible?
Private Instance Methods
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 110 def browser_version @browser_version ||= begin caps = driver.browser.capabilities (caps[:browser_version] || caps[:version]).to_f end end
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 117 def chrome_edge? browser_version >= 75 end
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 100 def file_errors @file_errors = ::Selenium::WebDriver.logger.suppress_deprecations do if defined? ::Selenium::WebDriver::Error::ExpectedError # Selenium < 4 [::Selenium::WebDriver::Error::ExpectedError] else [] end end end
Source
# File lib/capybara/selenium/nodes/edge_node.rb, line 121 def native_displayed? (driver.options[:native_displayed] != false) && # chromedriver_supports_displayed_endpoint? && (!ENV['DISABLE_CAPYBARA_SELENIUM_OPTIMIZATIONS']) end