Class: Applitools::Selenium::Target
- Inherits:
-
Object
- Object
- Applitools::Selenium::Target
- Includes:
- FluentInterface
- Defined in:
- lib/applitools/selenium/target.rb
Instance Attribute Summary collapse
-
#coordinate_type ⇒ Object
Returns the value of attribute coordinate_type.
-
#element ⇒ Object
Returns the value of attribute element.
-
#floating_regions ⇒ Object
Returns the value of attribute floating_regions.
-
#frames ⇒ Object
Returns the value of attribute frames.
-
#ignored_regions ⇒ Object
Returns the value of attribute ignored_regions.
-
#options ⇒ Object
Returns the value of attribute options.
-
#region_to_check ⇒ Object
Returns the value of attribute region_to_check.
-
#regions ⇒ Object
Returns the value of attribute regions.
Class Method Summary collapse
Instance Method Summary collapse
- #finalize ⇒ Object
-
#floating(region_or_element, bounds, left, top, right, bottom, padding) ⇒ Object
Sets the wanted floating region.
- #frame(element) ⇒ Object
- #fully(value = true) ⇒ Object
-
#ignore(region_or_element, how, what, padding = Applitools::PaddingBounds::PIXEL_PADDING) ⇒ Object
Add the wanted ignored regions.
-
#initialize ⇒ Target
constructor
Initialize a Applitools::Selenium::Target instance.
-
#region(element, how, what) ⇒ Applitools::Selenium::Target
Add the desired region.
- #script_hook(hook) ⇒ Object
- #send_dom(value = true) ⇒ Object
- #use_dom(value = true) ⇒ Object
Constructor Details
#initialize ⇒ Target
Initialize a Applitools::Selenium::Target instance.
27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/applitools/selenium/target.rb', line 27 def initialize self.frames = [] self. = { ignore_caret: true, ignore_mismatch: false, send_dom: nil, script_hooks: { beforeCaptureScreenshot: '' } } self.regions = {} reset_for_fullscreen end |
Instance Attribute Details
#coordinate_type ⇒ Object
Returns the value of attribute coordinate_type.
21 22 23 |
# File 'lib/applitools/selenium/target.rb', line 21 def coordinate_type @coordinate_type end |
#element ⇒ Object
Returns the value of attribute element.
21 22 23 |
# File 'lib/applitools/selenium/target.rb', line 21 def element @element end |
#floating_regions ⇒ Object
Returns the value of attribute floating_regions.
21 22 23 |
# File 'lib/applitools/selenium/target.rb', line 21 def floating_regions @floating_regions end |
#frames ⇒ Object
Returns the value of attribute frames.
21 22 23 |
# File 'lib/applitools/selenium/target.rb', line 21 def frames @frames end |
#ignored_regions ⇒ Object
Returns the value of attribute ignored_regions.
21 22 23 |
# File 'lib/applitools/selenium/target.rb', line 21 def ignored_regions @ignored_regions end |
#options ⇒ Object
Returns the value of attribute options.
21 22 23 |
# File 'lib/applitools/selenium/target.rb', line 21 def end |
#region_to_check ⇒ Object
Returns the value of attribute region_to_check.
21 22 23 |
# File 'lib/applitools/selenium/target.rb', line 21 def region_to_check @region_to_check end |
#regions ⇒ Object
Returns the value of attribute regions.
21 22 23 |
# File 'lib/applitools/selenium/target.rb', line 21 def regions @regions end |
Class Method Details
.frame(element) ⇒ Object
8 9 10 |
# File 'lib/applitools/selenium/target.rb', line 8 def frame(element) new.frame(element) end |
.region(*args) ⇒ Object
16 17 18 |
# File 'lib/applitools/selenium/target.rb', line 16 def region(*args) new.region(*args) end |
.window ⇒ Object
12 13 14 |
# File 'lib/applitools/selenium/target.rb', line 12 def window new end |
Instance Method Details
#finalize ⇒ Object
207 208 209 210 211 212 |
# File 'lib/applitools/selenium/target.rb', line 207 def finalize return self unless frame_or_element region = frame_or_element self.frame_or_element = nil dup.region(region) end |
#floating(region_or_element, bounds, left, top, right, bottom, padding) ⇒ Object
Sets the wanted floating region
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/applitools/selenium/target.rb', line 109 def floating(*args) requested_padding = if args.last.is_a? Applitools::PaddingBounds args.pop else Applitools::PaddingBounds::PIXEL_PADDING end value = case args.first when Applitools::FloatingRegion args.first.padding(requested_padding) when ::Applitools::Region Applitools::FloatingRegion.any(args.shift, *args).padding(requested_padding) when ::Selenium::WebDriver::Element, Applitools::Selenium::Element proc do |_driver, return_element = false| args_dup = args.dup region = args_dup.shift padding_proc = proc do |region| Applitools::FloatingRegion.any(region, *args_dup).padding(requested_padding) end next region, padding_proc if return_element padding_proc.call(region) end else proc do |driver, return_element = false| args_dup = args.dup region = driver.find_element(args_dup.shift, args_dup.shift) padding_proc = proc do |region| Applitools::FloatingRegion.any( region, *args_dup ).padding(requested_padding) end next region, padding_proc if return_element padding_proc.call(region) end end floating_regions << value self end |
#frame(element) ⇒ Object
153 154 155 156 157 158 |
# File 'lib/applitools/selenium/target.rb', line 153 def frame(element) frames << frame_or_element if frame_or_element self.frame_or_element = element reset_for_fullscreen self end |
#fully(value = true) ⇒ Object
147 148 149 150 151 |
# File 'lib/applitools/selenium/target.rb', line 147 def fully(value = true) [:stitch_content] = value ? true : false handle_frames self end |
#ignore(region_or_element, how, what, padding = Applitools::PaddingBounds::PIXEL_PADDING) ⇒ Object
Add the wanted ignored regions.
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/applitools/selenium/target.rb', line 46 def ignore(*args) if args.empty? reset_ignore else requested_padding = if args.last.is_a? Applitools::PaddingBounds args.pop else Applitools::PaddingBounds::PIXEL_PADDING end ignored_regions << case args.first when Applitools::Region proc { args.first.padding(requested_padding) } when Applitools::Selenium::Element, ::Selenium::WebDriver::Element proc do |_driver, return_element = false| region = args.first padding_proc = proc do |region| Applitools::Region.from_location_size( region.location, region.size ).padding(requested_padding) end next region, padding_proc if return_element padding_proc.call(region) end else proc do |driver, return_element = false| region = driver.find_element(*args) padding_proc = proc do |region| Applitools::Region.from_location_size( region.location, region.size ).padding(requested_padding) end next region, padding_proc if return_element padding_proc.call(region) end end end self end |
#region(element, how, what) ⇒ Applitools::Selenium::Target
Add the desired region.
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/applitools/selenium/target.rb', line 171 def region(*args) handle_frames self.region_to_check = case args.first when Applitools::Selenium::Element, Applitools::Region, ::Selenium::WebDriver::Element proc { args.first } when String proc do |driver| driver.find_element(name_or_id: args.first) end else proc do |driver| driver.find_element(*args) end end self.coordinate_type = Applitools::EyesScreenshot::COORDINATE_TYPES[:context_relative] [:timeout] = nil reset_ignore reset_floating self end |
#script_hook(hook) ⇒ Object
202 203 204 205 |
# File 'lib/applitools/selenium/target.rb', line 202 def script_hook(hook) [:script_hooks][:beforeCaptureScreenshot] = hook self end |
#send_dom(value = true) ⇒ Object
192 193 194 195 |
# File 'lib/applitools/selenium/target.rb', line 192 def send_dom(value = true) [:send_dom] = value ? true : false self end |
#use_dom(value = true) ⇒ Object
197 198 199 200 |
# File 'lib/applitools/selenium/target.rb', line 197 def use_dom(value = true) [:use_dom] = value ? true : false self end |