I'm creating a suite of Selenium tests for an web album application. I would like to test whether an image is actually displayed (it contains valid image data). Is such thing possible?
Thanks for help.
|
I'm creating a suite of Selenium tests for an web album application. I would like to test whether an image is actually displayed (it contains valid image data). Is such thing possible? Thanks for help. |
|||
|
|
|
I faced this similar situation before where the src of the image is as expected but the image is not displayed on the page. You can check if the image is getting displayed or not by using the JavaScriptExcecutor. Use the following code - Pass the WebElement (image) -
You can verify if the image has actually loaded on the webpage by doing this. |
|||||
|
|
If you are willing to use the TestPlan frontend to Selenium there a few options. Once you have the URL of the image you can grab this URL and inspect the returned headers. you can also save the data to a file if you'd like to manually inspect it. Or you can write a validator in Java to take that data and check to see if it actually decodes. If you're willing to try it out then I'll write you a sample script. I can even do a quick image validator function if you'd like. |
|||
|
|
I'm not quite sure what you're asking. Do you want to check that the image links return 200 status codes? Or that the linked data is a valid image? Or that the browser actually displays the page? The first two are straightforward and can be done without Selenium in many cases by using an HTTP library in your favorite language (if you need to interact with the page, Selenium is likely still your better bet). If the latter, that's going to be an incredibly difficult problem to solve. |
|||
|
|
|
You can certainly check that the image appears in the page source e.g. by using a XPath parameter. You can assume that because it is in the page source, it will be displayed but I don't know of any way to actually validate this. |
|||
|
|
If you're using Java, selenium has a method named
This should return "true" for status 200 or "false" for something else. |
|||
|
|