Web页面中有个网页元素“导出”,可以点击,但不是按钮,html代码如下:
定位出“导出”的xpath路径为 //*[@id="urlExportIn"]
在Robot Framework中使用关键字click element点击该元素,但是没有任何反应,
且报错如下:ElementNotInteractableException: Message: element not interactable。
使用关键字Execute JavaScript可以解决,方法如下:
${export_element} Get WebElement //*[@id="urlExportIn"]
Execute JavaScript ARGUMENTS ${export_element} JAVASCRIPT arguments[0].click();