I want to click on button using partial css path:
Full xpath:
// /html/body/div[1]/div[2]/div/mat-dialog-container/mobileweb-outbound-pick-picking-dialog/mobileweb-outbound-pick-confirmation/div/div/div/mobileweb-client-area/div/div/div/div[2]/div/div[1]/mobileweb-action-button[1]/div/button
// //*[@id="source-lp.select-lp.button"]
I tried this Java Selenium web driver code:
WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(20));
WebElement until = wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("//mat-dialog-container/mobileweb-outbound-pick-picking-dialog/mobileweb-outbound-pick-confirmation//*[@id=\"source-lp.select-lp.button\"]")));
But I get error:
org.openqa.selenium.TimeoutException: Expected condition failed: waiting for presence of element located by: By.cssSelector: //mat-dialog-container/mobileweb-outbound-pick-picking-dialog/mobileweb-outbound-pick-confirmation//*[@id="source-lp.select-lp.button"] (tried for 20 second(s) with 500 milliseconds interval)
at org.openqa.selenium.support.ui.WebDriverWait.timeoutException(WebDriverWait.java:138)
at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:231)
at org.mobile.outbound.pick.picking.clusterpicking.ClusterPickingPickTest.buildEmptyClusterFromShipmentId(ClusterPickingPickTest.java:361)
at org.mobile.outbound.pick.picking.clusterpicking.ClusterPickingPickTest.Mobile_Web_Cluster_Picking_Pick_66732(ClusterPickingPickTest.java:176)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:133)
at org.testng.internal.TestInvoker.invokeMethod(TestInvoker.java:598)
at org.testng.internal.TestInvoker.invokeTestMethod(TestInvoker.java:173)
at org.testng.internal.MethodRunner.runInSequence(MethodRunner.java:46)
at org.testng.internal.TestInvoker$MethodInvocationAgent.invoke(TestInvoker.java:824)
at org.testng.internal.TestInvoker.invokeTestMethods(TestInvoker.java:146)
at org.testng.internal.TestMethodWorker.invokeTestMethods(TestMethodWorker.java:146)
at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:128)
at java.util.ArrayList.forEach(ArrayList.java:1259)
at org.testng.TestRunner.privateRun(TestRunner.java:794)
at org.testng.TestRunner.run(TestRunner.java:596)
at org.testng.SuiteRunner.runTest(SuiteRunner.java:377)
at org.testng.SuiteRunner.runSequentially(SuiteRunner.java:371)
at org.testng.SuiteRunner.privateRun(SuiteRunner.java:332)
at org.testng.SuiteRunner.run(SuiteRunner.java:276)
at org.testng.SuiteRunnerWorker.runSuite(SuiteRunnerWorker.java:53)
at org.testng.SuiteRunnerWorker.run(SuiteRunnerWorker.java:96)
at org.testng.TestNG.runSuitesSequentially(TestNG.java:1212)
at org.testng.TestNG.runSuitesLocally(TestNG.java:1134)
at org.testng.TestNG.runSuites(TestNG.java:1063)
at org.testng.TestNG.run(TestNG.java:1031)
at com.intellij.rt.testng.IDEARemoteTestNG.run(IDEARemoteTestNG.java:66)
at com.intellij.rt.testng.RemoteTestNGStarter.main(RemoteTestNGStarter.java:109)
Caused by: org.openqa.selenium.InvalidSelectorException: invalid selector: An invalid or illegal selector was specified
Do you know how I can fix this issue?