Quantcast
Channel: Webdriver Screenshot in Python - Stack Overflow
Viewing all articles
Browse latest Browse all 16

Answer by sambehera for Webdriver Screenshot in Python

$
0
0

I understand you are looking for an answer in python, but here is how one would do it in ruby..

http://watirwebdriver.com/screenshots/

If that only works by saving in current directory only.. I would first assign the image to a variable and then save that variable to disk as a PNG file.

eg:

 image = b.screenshot.png File.open("testfile.png", "w") do |file|  file.puts "#{image}" end

where b is the browser variable used by webdriver. i have the flexibility to provide an absolute or relative path in "File.open" so I can save the image anywhere.


Viewing all articles
Browse latest Browse all 16

Trending Articles