ashot icon indicating copy to clipboard operation
ashot copied to clipboard

WebDriver Screenshot utility. Take screenshots, crop, prettify, compare

Results 71 ashot issues
Sort by recently updated
recently updated
newest added

I am using aShot for visual testing. https://github.com/pazone/ashot I have some pages that I am interested in taking the screenshot only for the current visible part of the page (and...

Code to repro: ```java String url = "https://i.pinimg.com/originals/b0/09/0d/b0090d60fe925d103368baf523478ff4.png"; getWebDriver().get(url); findElement(By.tagName("img"), "image").shouldBe(visible); WebElement webElement = getWebDriver().findElement(By.tagName("img")); sleep(3000); Screenshot screenshot = new AShot() .coordsProvider(new WebDriverCoordsProvider()) .shootingStrategy(ShootingStrategies.viewportPasting(100)) .takeScreenshot(getWebDriver()); File actualFile = new File("arbit.png");...

When i use Ashot with selenium to capture screenshot for particular webelement,its not working. I have also attached the logs for reference. Screenshot for taking full page is working. Iam...

Hi Team, i am unable to take full page screenshot , my code is below, i am using java 8. ChromeOptions options = new ChromeOptions(); //options.addArguments("headless"); driver = new ChromeDriver(options);...

Hi , I am using selenium 4.0 and ashot 1.53 with IE 11 Full page screenshot is working fine withchrome and firefox but not with IE11. Image is attached below...

Hello, Is there any plan to publish the Node Js version of the library. Currently it is only available for Java.

In my project, i have a requirement to capture a windows element (gridtable) , but unable to use Ashot for that. For example : I'm using selenium+ winapp to automate...

In my project, i have a requirement to capture a windows element (gridtable) , but unable to use Ashot for that. For example : I'm using selenium+ winapp to automate...

Hello, I'm currently trying out ashot to take some comparison images on a website. I have managed to make a screen shot where the page scrolls with Screenshot entirePageScreenShot =...

Simple screenshot of web element is working. Full scroll-page screenshot is working too. I would like to make scroll-screenshot of single webElement, but its no working. I tried it like...