Sha256: 34e7c4920ec1138dedab2ed78cdf6b2704aafc396118820179c33e5ee7c8bc88
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
module Webdrone class Browser def mark @mark ||= Mark.new self end end class Mark attr_accessor :a0, :default_times, :default_sleep def initialize(a0) @a0 = a0 @default_times = 3 @default_sleep = 0.05 end def mark(text, n: 1, all: false, visible: true, color: '#af1616', times: nil, sleep: nil, shot: nil) item = @a0.find.send __callee__, text, n: n, all: all, visible: visible mark_item item, color: color, times: times, sleep: sleep, shot: shot, text: text rescue => exception Webdrone.report_error(@a0, exception) end alias_method :id, :mark alias_method :css, :mark alias_method :link, :mark alias_method :button, :mark alias_method :on, :mark alias_method :option, :mark alias_method :xpath, :mark def mark_item(item, color: '#af1616', times: nil, sleep: nil, shot: nil, text: nil) times ||= @default_times sleep ||= @default_sleep times.times do mark_item_border item, 'white' sleep sleep mark_item_border item, 'black' sleep sleep mark_item_border item, color sleep sleep end @a0.shot.screen shot.is_a?(String) ? shot : text if shot item end def mark_item_border(item, color) if item.is_a? Array item.each do |item| @a0.exec.script("arguments[0].style.outline = '2px solid #{color}'", item) end else @a0.exec.script("arguments[0].style.outline = '2px solid #{color}'", item) end end protected :mark, :mark_item_border end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webdrone-1.4.4 | lib/webdrone/mark.rb |