So I need a way to take screenshots of my functional tests. Right now I'm using Selenium 2 with C# bindings. I pretty much want to take a screenshot at the end of the test to make sure the desired page is displayed. Are there any particular tools you guys know of that I can incorporate into my C# code that will trigger a screenshot? I couldnt find a built-in Selenium 2 solution(unless I looked it over).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
To do screenshots in Selenium 2 you need to do
I should say that code should work as I quickly tested it in IronPython Repl. See the IronPython code below
|
|||||||||||
|
|
|||
|
|
|
I don't know if it matters, but I ended up having to cast the driver when i was writing in c#. something like: Screenshot ss = ((ITakesScreenshot)driver).GetScreenshot(); |
|||
|
|
|
Using selenium there were two calls I was familiar with: |
|||||||||
|
