Selenium 无法在剑道网格上执行单击

Selenium 无法在剑道网格上执行单击,selenium,automation,kendo-grid,Selenium,Automation,Kendo Grid,我试图单击剑道网格中的一个单元格,但无法实现。尝试使用不同的选项,如使用Actions、JavaScriptExecutor等。使用JS,我可以突出显示特定单元格,但无法执行单击 示例代码 HighlightElement(record); //Method to highlight a web element using JS (working) driver.FindElement(record).Click();//Trying to click the same element (No

我试图单击剑道网格中的一个单元格,但无法实现。尝试使用不同的选项,如使用Actions、JavaScriptExecutor等。使用JS,我可以突出显示特定单元格,但无法执行单击

示例代码

HighlightElement(record);  //Method to highlight a web element using JS (working)
driver.FindElement(record).Click();//Trying to click the same element (Not Working)

你能发布一些代码来描述你的问题并展示你已经尝试过的吗?用示例代码更新