You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return new RemoteWebDriver(remoteUrl, capabilities);
is hard-coded inside net.serenitybdd.core.webdriver.driverproviders.RemoteDriverProvider, so there's no way to start the RemoteWebDriver w/o tracing from Serenity.
Currently I am using Serenity BDD 3.3.10 and my test cases are failing on Saucelab with Driver Configuration Error
After debugging it as workaround I found it to disable Open Telemetry Logging will resolve this issues
Refereeing this Fix - SeleniumHQ/selenium#10281
I was facing Same issue with Selenium Testing scripts so I have added following in my scripts
driver = new RemoteWebDriver(url, options, false);
and Its working
For Serenity as I don't have own driver code pls suggest a way to disable opentelemetry logging
The text was updated successfully, but these errors were encountered: