class PageMagic::Element::Selector::Model

class model - represents the parameters for capybara finder methods

Attributes

args[R]
options[R]

Public Class Methods

new(args, options = {}) click to toggle source
# File lib/page_magic/element/selector/model.rb, line 10
def initialize(args, options = {})
  @args = args
  @options = options
end

Public Instance Methods

==(other) click to toggle source
# File lib/page_magic/element/selector/model.rb, line 15
def ==(other)
  other.args == args && other.options == options
end