Sha256: 74ce04d9d594e23b624a74f7817f96e2f0a7240221c36390b2d27f0be1d0dff9
Contents?: true
Size: 441 Bytes
Versions: 12
Compression:
Stored size: 441 Bytes
Contents
# frozen_string_literal: true module PageMagic class Element class Selector # class model - represents the parameters for capybara finder methods class Model attr_reader :args, :options def initialize(args, options = {}) @args = args @options = options end def ==(other) other.args == args && other.options == options end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems