[JAVA-13976] Upgrade Spring Boot to 2.7.2 (#12603)

* [JAVA-13976] Upgrade Spring Boot to 2.7.2

* [JAVA-13976] Fix failing test due to incorrect Jackson version
This commit is contained in:
Haroon Khan
2022-08-22 18:17:32 +01:00
committed by GitHub
parent 553415e644
commit bea0209f39
43 changed files with 127 additions and 115 deletions

View File

@@ -1,5 +1,6 @@
package com.baeldung.cucumber.tags.acceptance.commonutil;
import org.openqa.selenium.Platform;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.remote.DesiredCapabilities;
@@ -34,7 +35,7 @@ public class ScenarioContextUI {
}
private static WebDriver getRemoteWebDriver(URL url) {
return new RemoteWebDriver(url, DesiredCapabilities.chrome());
return new RemoteWebDriver(url, new DesiredCapabilities("chrome", "", Platform.ANY));
}
private static WebDriver getLocalChromeDriver() {