Class: Applitools::Selenium::Target
- Inherits:
-
Object
- Object
- Applitools::Selenium::Target
- Includes:
- FluentInterface, MatchLevelSetter
- Defined in:
- lib/applitools/selenium/target.rb
Instance Attribute Summary collapse
-
#accessibility_regions ⇒ Object
Returns the value of attribute accessibility_regions.
-
#content_regions ⇒ Object
Returns the value of attribute content_regions.
-
#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.
-
#layout_regions ⇒ Object
Returns the value of attribute layout_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.
-
#strict_regions ⇒ Object
Returns the value of attribute strict_regions.
Class Method Summary collapse
Instance Method Summary collapse
- #accessibility(*args) ⇒ Object
- #before_render_screenshot_hook(hook) ⇒ Object (also: #script_hook)
- #content(*args) ⇒ Object
- #default_full_page_for_vg ⇒ Object
- #exact(*args) ⇒ Object
- #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.
- #layout(*args) ⇒ Object
- #process_region(*args) ⇒ Object
-
#region(element, how, what) ⇒ Applitools::Selenium::Target
Add the desired region.
- #replace_element(original, new, array) ⇒ Object
- #replace_region(original_region, new_region, key) ⇒ Object
- #send_dom(value = true) ⇒ Object
- #strict(*args) ⇒ Object
- #use_dom(value = true) ⇒ Object
Constructor Details
#initialize ⇒ Target
Initialize a Applitools::Selenium::Target instance.
29 30 31 32 33 34 35 36 37 |
# File 'lib/applitools/selenium/target.rb', line 29 def initialize self.frames = [] self. = { ignore_mismatch: false, script_hooks: { beforeCaptureScreenshot: '' } } self.regions = {} reset_for_fullscreen end |
Instance Attribute Details
#accessibility_regions ⇒ Object
Returns the value of attribute accessibility_regions.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def accessibility_regions @accessibility_regions end |
#content_regions ⇒ Object
Returns the value of attribute content_regions.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def content_regions @content_regions end |
#coordinate_type ⇒ Object
Returns the value of attribute coordinate_type.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def coordinate_type @coordinate_type end |
#element ⇒ Object
Returns the value of attribute element.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def element @element end |
#floating_regions ⇒ Object
Returns the value of attribute floating_regions.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def floating_regions @floating_regions end |
#frames ⇒ Object
Returns the value of attribute frames.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def frames @frames end |
#ignored_regions ⇒ Object
Returns the value of attribute ignored_regions.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def ignored_regions @ignored_regions end |
#layout_regions ⇒ Object
Returns the value of attribute layout_regions.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def layout_regions @layout_regions end |
#options ⇒ Object
Returns the value of attribute options.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def @options end |
#region_to_check ⇒ Object
Returns the value of attribute region_to_check.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def region_to_check @region_to_check end |
#regions ⇒ Object
Returns the value of attribute regions.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def regions @regions end |
#strict_regions ⇒ Object
Returns the value of attribute strict_regions.
22 23 24 |
# File 'lib/applitools/selenium/target.rb', line 22 def strict_regions @strict_regions end |
Class Method Details
.frame(element) ⇒ Object
9 10 11 |
# File 'lib/applitools/selenium/target.rb', line 9 def frame(element) new.frame(element) end |
.region(*args) ⇒ Object
17 18 19 |
# File 'lib/applitools/selenium/target.rb', line 17 def region(*args) new.region(*args) end |
.window ⇒ Object
13 14 15 |
# File 'lib/applitools/selenium/target.rb', line 13 def window new end |
Instance Method Details
#accessibility(*args) ⇒ Object
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 |
# File 'lib/applitools/selenium/target.rb', line 311 def accessibility(*args) = Applitools::Utils. args unless [:type] raise Applitools::EyesError, 'You should call Target.accessibility(region, type: type). The :type option is required' end unless Applitools::AccessibilityRegionType.enum_values.include?([:type]) raise Applitools::EyesIllegalArgument, "The region type should be one of [#{Applitools::AccessibilityRegionType.enum_values.join(', ')}]" end handle_frames padding_proc = proc do |region| Applitools::AccessibilityRegion.new( region, [:type] ) end accessibility_regions << case args.first when ::Selenium::WebDriver::Element proc do |driver, return_element = false| element = applitools_element_from_selenium_element(driver, args.first) next element, padding_proc if return_element padding_proc.call(element) end when Applitools::Selenium::Element proc do |_driver, return_element = false| next args.first, padding_proc if return_element padding_proc.call(args.first) end when Applitools::Region Applitools::AccessibilityRegion.new( args.first, [:type] ) when String proc do |driver, return_element = false| element = driver.find_element(name_or_id: args.first) next element, padding_proc if return_element padding_proc.call(element) end else proc do |driver, return_element = false| elements = driver.find_elements(*args) next elements, padding_proc if return_element elements.map { |e| padding_proc.call(e) } end end self end |
#before_render_screenshot_hook(hook) ⇒ Object Also known as: script_hook
297 298 299 300 |
# File 'lib/applitools/selenium/target.rb', line 297 def before_render_screenshot_hook(hook) [:script_hooks][:beforeCaptureScreenshot] = hook self end |
#content(*args) ⇒ Object
175 176 177 178 179 180 |
# File 'lib/applitools/selenium/target.rb', line 175 def content(*args) return match_level(Applitools::MatchLevel::CONTENT) if args.empty? region = process_region(*args) content_regions << region self end |
#default_full_page_for_vg ⇒ Object
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 |
# File 'lib/applitools/selenium/target.rb', line 360 def default_full_page_for_vg if [:stitch_content].nil? case region_to_check when nil fully(true) when Proc begin r = region_to_check.call fully(true) if r == Applitools::Region::EMPTY rescue StandardError fully(false) end end end nil end |
#exact(*args) ⇒ Object
189 190 191 |
# File 'lib/applitools/selenium/target.rb', line 189 def exact(*args) match_level(Applitools::MatchLevel::EXACT, *args) end |
#finalize ⇒ Object
304 305 306 307 308 309 |
# File 'lib/applitools/selenium/target.rb', line 304 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
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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/applitools/selenium/target.rb', line 120 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 proc do |driver, return_element = false| args_dup = args.dup region = applitools_element_from_selenium_element(driver, args_dup.shift) padding_proc = proc do |reg| Applitools::FloatingRegion.any(reg, *args_dup).padding(requested_padding) end next region, padding_proc if return_element padding_proc.call(region) end when ::Applitools::Selenium::Element proc do |_driver, return_element = false| args_dup = args.dup region = args_dup.shift padding_proc = proc do |reg| Applitools::FloatingRegion.any(reg, *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 |reg| Applitools::FloatingRegion.any( reg, *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
244 245 246 247 248 249 |
# File 'lib/applitools/selenium/target.rb', line 244 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
238 239 240 241 242 |
# File 'lib/applitools/selenium/target.rb', line 238 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 85 86 87 88 89 90 91 92 93 94 95 |
# 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 ::Selenium::WebDriver::Element proc do |driver, return_element = false| region = applitools_element_from_selenium_element(driver, args.first) padding_proc = proc do |reg| Applitools::Region.from_location_size( reg.location, reg.size ).padding(requested_padding) end next region, padding_proc if return_element padding_proc.call(region) end when Applitools::Selenium::Element proc do |_driver, return_element = false| region = args.first padding_proc = proc do |reg| Applitools::Region.from_location_size( reg.location, reg.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 |reg| Applitools::Region.from_location_size( reg.location, reg.size ).padding(requested_padding) end next region, padding_proc if return_element padding_proc.call(region) end end end self end |
#layout(*args) ⇒ Object
168 169 170 171 172 173 |
# File 'lib/applitools/selenium/target.rb', line 168 def layout(*args) return match_level(Applitools::MatchLevel::LAYOUT) if args.empty? region = process_region(*args) layout_regions << region self end |
#process_region(*args) ⇒ Object
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'lib/applitools/selenium/target.rb', line 193 def process_region(*args) r = args.first case r when ::Selenium::WebDriver::Element proc do |driver| applitools_element_from_selenium_element(driver, args.dup.first) end when Applitools::Region, Applitools::Selenium::Element proc { r } else proc do |driver| args_dup = args.dup driver.find_element(args_dup.shift, args_dup.shift) end end end |
#region(element, how, what) ⇒ Applitools::Selenium::Target
Add the desired region.
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'lib/applitools/selenium/target.rb', line 262 def region(*args) handle_frames self.region_to_check = case args.first when ::Selenium::WebDriver::Element proc do |driver| applitools_element_from_selenium_element(driver, args.first) end when Applitools::Selenium::Element, Applitools::Region 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 |
#replace_element(original, new, array) ⇒ Object
227 228 229 230 231 232 233 234 235 236 |
# File 'lib/applitools/selenium/target.rb', line 227 def replace_element(original, new, array) case new when Array index = array.index(original) array.delete_at(index) array.insert(index, *new) when Applitools::Selenium::VGRegion array[array.index(original)] = new end end |
#replace_region(original_region, new_region, key) ⇒ Object
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
# File 'lib/applitools/selenium/target.rb', line 210 def replace_region(original_region, new_region, key) case key when :content_regions replace_element(original_region, new_region, content_regions) when :strict_regions replace_element(original_region, new_region, strict_regions) when :layout_regions replace_element(original_region, new_region, layout_regions) when :floating replace_element(original_region, new_region, floating_regions) when :ignore replace_element(original_region, new_region, ignored_regions) when :accessibility_regions replace_element(original_region, new_region, accessibility_regions) end end |
#send_dom(value = true) ⇒ Object
287 288 289 290 |
# File 'lib/applitools/selenium/target.rb', line 287 def send_dom(value = true) [:send_dom] = value ? true : false self end |
#strict(*args) ⇒ Object
182 183 184 185 186 187 |
# File 'lib/applitools/selenium/target.rb', line 182 def strict(*args) return match_level(Applitools::MatchLevel::STRICT) if args.empty? region = process_region(*args) strict_regions << region self end |
#use_dom(value = true) ⇒ Object
292 293 294 295 |
# File 'lib/applitools/selenium/target.rb', line 292 def use_dom(value = true) [:use_dom] = value ? true : false self end |