Sha256: f00cf932bc17446f69a7ca9d5c31fd4deb4e4636d3d87c1eb48b166c3e0e6ee5
Contents?: true
Size: 1.64 KB
Versions: 2
Compression:
Stored size: 1.64 KB
Contents
module Webdrone class Browser def mark @mark ||= Mark.new self end end class Mark attr_accessor :a0, :default_times, :default_delay def initialize(a0) @a0 = a0 @default_times = ENV['WEBDRONE_MARK_TIMES'] || 3 @default_delay = ENV['WEBDRONE_MARK_DELAY'] || 0.05 end def mark(text, n: 1, all: false, visible: true, color: '#af1616', times: nil, delay: nil, shot: nil) item = @a0.find.send __callee__, text, n: n, all: all, visible: visible mark_item item, color: color, times: times, delay: delay, 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, delay: nil, shot: nil, text: nil) times ||= @default_times delay ||= @default_delay times.times do mark_item_border item, 'white' sleep delay mark_item_border item, 'black' sleep delay mark_item_border item, color sleep delay 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
webdrone-1.6.2 | lib/webdrone/mark.rb |
webdrone-1.6.0 | lib/webdrone/mark.rb |