Does anyone know if it's possible to take a screenshot using Selenium WebDriver? (Note: Not Selenium RC)
|
Yes, it is possible. The following example is in Java:
|
|||||||||||||
|
|
in Python:
|
|||||
|
|
In ruby:
more file types and options are available and you can see them in takes_screenshot.rb |
|||
|
I got this issue resolved. You can augment the
|
||||
|
|
|
In PHP (using PHPUnit_Selenium extension version 1.2.7):
|
||||
|
|
|
If I am not mistaken, the Is there a way to take screenshots while the page is actually loading to understand the loading pattern of a webpage? |
|||||
|
|
the following worked like a charm:
|
|||
|
|
|
You can capture the image from windows using python web driver. Use the code below which page need to capture the screenshot
|
||||
|
|
|
I used this method for taking screen shot.
You may use this method wherever required. |
|||
|
|
|
In Jython:
|
||||
|
|
|
There is another question with sample in C#: Best way to take screenshots of tests in Selenium 2? |
||||
|
|
|
You can create a webdriverbacked selenium object using the Webdriver object, then you can take screen shot. |
||||
|
|
After do |scenario|
if(scenario.failed?)
puts "after step is executed"
end
time = Time.now.strftime('%a_%e_%Y_%l_%m_%p_%M')
file_path = File.expand_path(File.dirname(__FILE__) + '/../../../../../mlife_screens_shot')+'/'+time +'.png'
page.driver.browser.save_screenshot file_path
end
Given /^snapshot$/ do
time = Time.now.strftime('%a_%e_%Y_%l_%m_%p_%M')
file_path = File.expand_path(File.dirname(__FILE__) + '/../../../../../mlife_screens_shot')+'/'+time +'.png'
page.driver.browser.save_screenshot file_path
end
|
|||
|
|
|
In C#
|
|||
|
|
|
time = Time.now.strftime('%a_%e_%Y_%l_%m_%p_%M_%S') file_path = File.expand_path(File.dirname(FILE) + 'screens_shot')+'/'+time +'.png' #driver.save_screenshot(file_path) page.driver.browser.save_screenshot file_path |
|||
|
|
|
in Javascript
|
|||
|
|
protected by Community♦ Dec 18 '12 at 11:24
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

