Sha256: b5014ee21e7a3787d0a1f8b6189fe84ddf7e014e6427dc1e5b23a6ecf97dfd56
Contents?: true
Size: 557 Bytes
Versions: 4
Compression:
Stored size: 557 Bytes
Contents
# frozen_string_literal: true module Watir module Container include JSSnippets # # Returns element. # # @example # browser.element(data_bind: 'func') # # @return [HTMLElement] # def element(opts = {}) HTMLElement.new(self, opts) end # # Returns element collection. # # @example # browser.elements(data_bind: 'func') # # @return [HTMLElementCollection] # def elements(opts = {}) HTMLElementCollection.new(self, opts) end end # Container end # Watir
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
watir-7.3.0 | lib/watir/container.rb |
watir-7.2.2 | lib/watir/container.rb |
watir-7.2.1 | lib/watir/container.rb |
watir-7.2.0 | lib/watir/container.rb |