Hi, I am including TestProject in my existing TestNG framework, but I am getting the error org.openqa.selenium.WebDriverException: Failed to create an instance of io.testproject.sdk.drivers.web.ChromeDriver in the setup() method.
public void setup() throws MalformedURLException {
driver = new DriverBuilder<ChromeDriver>(new ChromeOptions())
.withRemoteAddress(new URL("http://localhost:8585"))
.withToken("*****")
.build(ChromeDriver.class);
}