Skip to content
Advertisement

Ashot screenshot does not correctly crop the element from screenshot

I am trying to open this url and take the screenshot of the Keep browsing button which looks like the below image using Ashot library.

enter image description here

Here is my dependencies on pom.xml:

JavaScript

And here is my code:

JavaScript

But when i executes the code, the taken screenshot not correct.

Here is my screenshot:

enter image description here

Update: After reading this question, i added the shootingStartegy which also was not helpful:

JavaScript

Advertisement

Answer

I think, AShot library doesn’t have enough documentation. However, you do not need AShot to take screenshot of an element but you need it for making a comparision between two different images. Here is my suggested solution:

JavaScript

So, to make it short, the following line, which works by Selenium, can take the screenshot of element and you can use it as the Base-Image for your visual testing:

JavaScript

And here is the image:

enter image description here

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement