# File lib/capybara/selenium/node.rb, line 79 def ==(other) native == other.native end
# File lib/capybara/selenium/node.rb, line 7 def [](name) native.attribute(name.to_s) rescue Selenium::WebDriver::Error::WebDriverError nil end
# File lib/capybara/selenium/node.rb, line 51 def click native.click end
# File lib/capybara/selenium/node.rb, line 55 def drag_to(element) driver.browser.action.drag_and_drop(native, element.native).perform end
# File lib/capybara/selenium/node.rb, line 75 def find(locator) native.find_elements(:xpath, locator).map { |n| self.class.new(driver, n) } end
# File lib/capybara/selenium/node.rb, line 40 def select_option native.click unless selected? end
# File lib/capybara/selenium/node.rb, line 68 def selected? selected = native.selected? selected and selected != "false" end
# File lib/capybara/selenium/node.rb, line 21 def set(value) tag_name = self.tag_name type = self[:type] if (Array === value) && !self[:multiple] raise ArgumentError.new "Value cannot be an Array when 'multiple' attribute is not present. Not a #{value.class}" end if tag_name == 'input' and type == 'radio' click elsif tag_name == 'input' and type == 'checkbox' click if value ^ native.attribute('checked').to_s.eql?("true") elsif tag_name == 'input' and type == 'file' path_names = value.to_s.empty? ? [] : value native.send_keys(*path_names) elsif tag_name == 'textarea' or tag_name == 'input' driver.browser.execute_script "arguments[0].value = ''", native native.send_keys(value.to_s) end end
# File lib/capybara/selenium/node.rb, line 59 def tag_name native.tag_name.downcase end
# File lib/capybara/selenium/node.rb, line 2 def text # Selenium doesn't normalize Unicode whitespace. Capybara::Helpers.normalize_whitespace(native.text) end
# File lib/capybara/selenium/node.rb, line 44 def unselect_option if select_node['multiple'] != 'multiple' and select_node['multiple'] != 'true' raise Capybara::UnselectNotAllowed, "Cannot unselect option from single select box." end native.click if selected? end
Generated with the Darkfish Rdoc Generator 2.