-
Notifications
You must be signed in to change notification settings - Fork 46
Closed
Labels
Description
I added newest available version of shutterbug to my POM:
<dependency>
<groupId>com.assertthat</groupId>
<artifactId>selenium-shutterbug</artifactId>
<version>0.5</version>
</dependency>
but newest retina methods are not loading:
Sources:
public class Shutterbug {
private static final int DEFAULT_SCROLL_TIMEOUT = 100;
public Shutterbug() {
...
}
public static PageSnapshot shootPage(WebDriver driver) {
...
}
public static PageSnapshot shootPage(WebDriver driver, ScrollStrategy scroll) {
...
}
public static PageSnapshot shootPage(WebDriver driver, ScrollStrategy scroll, int scrollTimeout) {
...
}
public static ElementSnapshot shootElement(WebDriver driver, WebElement element) {
...
}
}
Am I doing something wrong?