I am using watir webdriver to do some automated testing of web pages. The pages have many images which are lazy loaded when the user scrolls the content into view (uses jquery lazyload plugin)
I am doing
10.times do
browser.send_keys :space
end
To scroll items in view and it loads fine I also do
browser.div(:id => 'footer').wd.location_once_scrolled_into_view
which scrolls it to the bottom and then I do
browser.screenshot.save
This does not seem to capture any images that are lazy loaded via jquery plugin.
What can I do to capture the entire page