Sha256: f23f7172c051ce75ec43d603deec7835f910b37da1386579f393223de2ab46b9
Contents?: true
Size: 793 Bytes
Versions: 1
Compression:
Stored size: 793 Bytes
Contents
# frozen_string_literal: true class Capybara::Mechanize::Node < Capybara::RackTest::Node def click(keys = [], **options) options.delete(:offset) raise ArgumentError, 'The mechanize driver does not support click options' unless keys.empty? && options.empty? submits = respond_to?(:submits?) ? submits? : ((tag_name == 'input' and %w[submit image].include?(type)) or ((tag_name == 'button') and type.nil? or type == 'submit')) if tag_name == 'a' or tag_name == 'label' or (tag_name == 'input' and %w[checkbox radio].include?(type)) Capybara::VERSION > '3.0.0' ? super : super() elsif submits associated_form = form Capybara::Mechanize::Form.new(driver, form).submit(self) if associated_form else super end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
capybara-mechanize-1.13.0 | lib/capybara/mechanize/node.rb |