I am trying to capture images of the content area of an web application I am testing.
I need to eliminate the browser menus from my images, so the user can compere the content images between different browsers.
This should run on any PC resolution and on any browser.
The given selenium methods provide a way to capture the entire window:
Selenium.CaptureScreenshot(filename),
Selenium.CaptureEntirePageScreenshot(filename,kwargs)
Also when trying to calculate the size of the frame selenium give a pixel count relative to the browser frame, which means that (0,0)
is the upper left point of the browser not the screen.
How can I capture the relevant content area using selenium combined with .NET?