org.openqa.selenium.WebDriverException: unknown error: Element is not clickable at point (242, 340). Other element would receive the click: (Session info: chrome=67.0.3396.79) (Driver info: chromedriver=2.37.544315 (730aa6a5fdba159ac9f4c1e8cbc59bf1b5ce12b7),platform=Windows NT 10.0.17134 x86_64) (WARNING: The server did not provide any stacktrace information) Command duration or timeout: 0 milliseconds Build info: version: '3.12.0', revision: '7c6e0b3', time: '2018-05-08T14:04:26.12Z' System info: host: 'DESKTOP-JE83S2H', ip: '192.168.1.106', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_161' Driver info: org.openqa.selenium.chrome.ChromeDriver Capabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.37.544315 (730aa6a5fdba15..., userDataDir: C:\Users\User\AppData\Local...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 67.0.3396.79, webStorageEnabled: true} Session ID: 26267f18d3cdeb5501be4f1fd01a5562
Asked
Active
Viewed 681 times
1 Answers
0
You might get this error due to various reasons
i) element is not yet loaded - increase the wait time
ii) element is not visible - add explicit wait time
iii) check if the element is being hidden by any pop up on the page before you try to click.
If you don't see any pop ups on the page. try adding a wait before the click operation (Thread.sleep(5000)) to check if that works. If it does, change the implicit wait to more relevant explicit wait.

Mahesh
- 129
- 1
- 2
- 19
-
Already User thread.sleep(60000) but not working – prakash Jun 14 '18 at 14:17
-
org.openqa.selenium.WebDriverException: unknown error: Element
– prakash Jun 14 '18 at 15:45 -
org.openqa.selenium.WebDriverException: unknown error: Element
– prakash Jun 14 '18 at 15:49