This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Hi, | |
I am using Selenium 4 alpha to run my tests and facing an issue. The issue is like at quite a few places normal selenium click (i.e. driver.findElement("").click()) doesn't work. | |
If I use, javascriptExecute interface and try to click on it using executeScript(), then it works fine. | |
Element Locator - | |
<a href="{someURL}">Test Central</a> | |
Selenium Code - | |
WebDriver driver = new SafariDriver(); |