I am getting below error.
org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure.
System.setProperty("webdriver.chrome.driver", "/Users/ssoosaimicheal/Mydocs/Projects/canaportal/softwares/drivers/chromedriver");
ChromeOptions options = new ChromeOptions();
options.addArguments("--diable--notifications");
WebDriverDetail webDriverDetail = new WebDriverDetail();
WebDriver webDriver = new ChromeDriver(options);
Build info: version: '4.0.0-beta-3', revision: '5d108f9a67'
System info: host: 'C02VT1HCHTDD', ip: '2603:6080:2803:81c3:0:0:0:1c94%en0',
os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.15.6', java.version: '13'
Driver info: org.openqa.selenium.chrome.ChromeDriver
Command: [null, newSession {desiredCapabilities=Capabilities {browserName: chrome}}]
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:637)
at org.openqa.selenium.remote.RemoteWebDriver.startSession(RemoteWebDriver.java:251)
at org.openqa.selenium.remote.RemoteWebDriver.<init>(RemoteWebDriver.java:173)
at org.openqa.selenium.chromium.ChromiumDriver.<init>(ChromiumDriver.java:89)
at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:99)
at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:86)
at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:75)
at org.cana.services.executors.ui.actions.browser.BrowserInstance.initialize(BrowserInstance.java:24)
at org.cana.services.executors.ui.actions.browser.BrowserInstance.initialize(BrowserInstance.java:42)
at org.cana.services.executors.ui.actions.browser.BrowserActionImpl.execute(BrowserActionImpl.java:16)
at org.cana.services.executors.ui.actions.browser.BrowserActionImpl_ClientProxy.execute(BrowserActionImpl_ClientProxy.zig:157)
at org.cana.services.executors.ui.UiControlExecutorImpl.execute(UiControlExecutorImpl.java:22)
at org.cana.services.executors.ui.UiControlExecutorImpl_ClientProxy.execute(UiControlExecutorImpl_ClientProxy.zig:157)
at org.cana.services.testplan.TestPlanServiceImpl.executeTestPlan(TestPlanServiceImpl.java:95)
at org.cana.services.testplan.TestPlanServiceImpl_ClientProxy.executeTestPlan(TestPlanServiceImpl_ClientProxy.zig:126)
at org.cana.scheduler.TestPlanSchedule.executeTestPlan(TestPlanSchedule.java:20)
at org.cana.scheduler.TestPlanSchedule_Subclass.executeTestPlan$$superaccessor1(TestPlanSchedule_Subclass.zig:201)
at org.cana.scheduler.TestPlanSchedule_Subclass$$function$$1.apply(TestPlanSchedule_Subclass$$function$$1.zig:29)
at io.quarkus.arc.impl.AroundInvokeInvocationContext.proceed(AroundInvokeInvocationContext.java:54)
at io.quarkus.narayana.jta.runtime.interceptor.TransactionalInterceptorBase.invokeInOurTx(TransactionalInterceptorBase.java:127)
at io.quarkus.narayana.jta.runtime.interceptor.TransactionalInterceptorBase.invokeInOurTx(TransactionalInterceptorBase.java:100)
at io.quarkus.narayana.jta.runtime.interceptor.TransactionalInterceptorRequired.doIntercept(TransactionalInterceptorRequired.java:32)
at io.quarkus.narayana.jta.runtime.interceptor.TransactionalInterceptorBase.intercept(TransactionalInterceptorBase.java:53)
at io.quarkus.narayana.jta.runtime.interceptor.TransactionalInterceptorRequired.intercept(TransactionalInterceptorRequired.java:26)
at io.quarkus.narayana.jta.runtime.interceptor.TransactionalInterceptorRequired_Bean.intercept(TransactionalInterceptorRequired_Bean.zig:340)
at io.quarkus.arc.impl.InterceptorInvocation.invoke(InterceptorInvocation.java:41)
at io.quarkus.arc.impl.AroundInvokeInvocationContext.perform(AroundInvokeInvocationContext.java:41)
at io.quarkus.arc.impl.InvocationContexts.performAroundInvoke(InvocationContexts.java:32)
at org.cana.scheduler.TestPlanSchedule_Subclass.executeTestPlan(TestPlanSchedule_Subclass.zig:159)
at org.cana.scheduler.TestPlanSchedule_ClientProxy.executeTestPlan(TestPlanSchedule_ClientProxy.zig:126)
at org.cana.scheduler.TestPlanSchedule_ScheduledInvoker_executeTestPlan_b1635972d209bdcb5e9df8aac89cb0e0cc0b647c.invokeBean(TestPlanSchedule_ScheduledInvoker_executeTestPlan_b1635972d209bdcb5e9df8aac89cb0e0cc0b647c.zig:46)
at io.quarkus.arc.runtime.BeanInvoker.invoke(BeanInvoker.java:20)
at io.quarkus.scheduler.runtime.SimpleScheduler$ScheduledTask$1.run(SimpleScheduler.java:227)
at io.quarkus.runtime.CleanableExecutor$CleaningRunnable.run(CleanableExecutor.java:231)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2415)
at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1452)
at org.jboss.threads.DelegatingRunnable.run(DelegatingRunnable.java:29)
at org.jboss.threads.ThreadLocalResettingRunnable.run(ThreadLocalResettingRunnable.java:29)
at java.base/java.lang.Thread.run(Thread.java:830)
at org.jboss.threads.JBossThread.run(JBossThread.java:501)
Caused by: java.lang.NoSuchMethodError: 'void com.google.common.base.Throwables.throwIfUnchecked(java.lang.Throwable)'
at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:145)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:619)
... 41 more