selenium-webdriver-full-screenshot 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2c9d6888cfd7f2f3d64b548805b067a4d3b4e688
4
- data.tar.gz: 0c932153e46b5559182dd56b0aab11ed6a1bf948
3
+ metadata.gz: f1fc9123346e11eb343ecf22d4b33c35bac58ffe
4
+ data.tar.gz: 1969e1d793941860e72b21c83652a86d3f02fb8e
5
5
  SHA512:
6
- metadata.gz: f3eec69e08c2ecbb65da8720a7cdd4d1ef3d12634e08555d65be99ce703297c493ee438c88e176263f5cfdf75237b6323f7148151531415ca50883c8424155bc
7
- data.tar.gz: 3508c420778c6242f8bea8bd116c1854f9109cf438687fcb3720cf55bd8903381e65b7132a6b670195b69918637812e09829ca7512cd9e05e7de825e772e5f43
6
+ metadata.gz: fb96acf6f2b5c3c5ee61a2aed24cf2247f404d75e116f3abaf3d902df071c734dfc9a9ce968a5d994eda081e9ec4e176be302fc88dd7d018d91e6f23200ec44f
7
+ data.tar.gz: 95224283c8425be0ade62a7b543f1d63546c76656830c4c23f7c05c0618c321498e4aac35e6dccda1ab3b7ff30b10aec6fc7396e01a0fa2303843a4ccb88d105
@@ -10,12 +10,15 @@ module Selenium
10
10
  scroll_height = widnow_inner_height * cnt
11
11
  crop_height = scroll_height + widnow_inner_height - page_height
12
12
  crop_height = crop_height ? crop_height : 0
13
- imgs << {
14
- img: ChunkyPNG::Image.from_blob(@bridge.screenshot.unpack('m')[0]),
15
- crop_height: crop_height,
16
- window_height: widnow_inner_height,
17
- window_width: widnow_inner_width
18
- }
13
+ # puts "#{scroll_height}, #{crop_height}"
14
+ if crop_height < widnow_inner_height
15
+ imgs << {
16
+ img: ChunkyPNG::Image.from_blob(@bridge.screenshot.unpack('m')[0]),
17
+ crop_height: crop_height,
18
+ window_height: widnow_inner_height,
19
+ window_width: widnow_inner_width
20
+ }
21
+ end
19
22
  end
20
23
  full_screenshot_png(imgs, filename)
21
24
  end
@@ -29,14 +32,17 @@ module Selenium
29
32
  last_img = imgs.pop
30
33
  last_crop_pos_y = last_img[:crop_height] * retina
31
34
  png_height -= last_crop_pos_y
35
+ # binding.pry
32
36
  imgs << {
33
37
  img: last_img[:img].crop(0, last_crop_pos_y, last_img[:img].width, last_img[:img].height - last_crop_pos_y)
34
38
  }
35
39
  png = ChunkyPNG::Image.new(png_width, png_height, ChunkyPNG::Color::TRANSPARENT)
40
+ # binding.pry
36
41
  imgs.each_with_index do |img, idx|
37
42
  png.compose!(img[:img], 0, compose_height)
38
43
  compose_height += img[:img].height
39
44
  end
45
+ puts "full_screenshot_png: #{filename}"
40
46
  png.save("#{filename}.png")
41
47
  end
42
48
 
@@ -1,7 +1,7 @@
1
1
  module Selenium
2
2
  module Webdriver
3
3
  module FullScreenshot
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: selenium-webdriver-full-screenshot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - deepriver