Hi,
Sorry if it's more of a selenium question... or a webdriver question... I don't know in which direction I should be looking..
I had to upgrade the selenium-firefox-driver version and move to gecko driver to make geb work with the current firefox version on windows 10.
It's not doing full page screenshots anymore.
How can I get them back ?
Current settings :
driver = {
System.setProperty("webdriver.gecko.driver", new File("C:/install/geckodriver.exe").getAbsolutePath())
DesiredCapabilities capabilities = DesiredCapabilities.firefox()
capabilities.setCapability("marionette", true)
WebDriver driver = new FirefoxDriver(capabilities)
}