I use selenium webdriver for automated tests. I developed a test which navigates to some page with many images. I want to save data of images which was downloaded by webbrowser. I can only call same url adress, but there is problem because images are dynamicaly generated. The target is save data of images which was showed in the web page without another http request.
Could you help me or give me any advice.
Thanks
You should consider creating a custom proxy that sits between Selenium and the remote servers. This way you can intercept any content you like and save it off to disk.
Which bindings are you using? For java, setting a proxy is pretty straight-forward – http://seleniumhq.org/docs/04_webdriver_advanced.jsp#using-a-proxy
Desperate Options: