admin管理员组文章数量:1340297
I have a xpath selector xpath=//input[@id=image]
, I want to click on this element using the keyword Execute Javascript ,please help me right the statement
I tired the statement
${Element} = Get WebElement xpath=//input[@id=image]
Execute JavaScript arguments[0].click(),${Element}
It throws an syntax error.
I have a xpath selector xpath=//input[@id=image]
, I want to click on this element using the keyword Execute Javascript ,please help me right the statement
I tired the statement
${Element} = Get WebElement xpath=//input[@id=image]
Execute JavaScript arguments[0].click(),${Element}
It throws an syntax error.
Share Improve this question asked Jan 10, 2018 at 7:05 DaniDani 1835 gold badges6 silver badges21 bronze badges 3- What is the reason you want to do this with Javascript when there are specific SeleniumLibrary keywords for this behaviour? – A. Kootstra Commented Jan 10, 2018 at 8:09
- Because when i use Click element keyword , i get the error WebDriverException: Message: unknown error: Element <table id="ext-p-1179" cellspacing="0" class="x-btn x-form-file-btn x-btn-icon">...</table> is not clickable at point (1165, 410). Other element would receive the click: <input id="image" name="image" class="x-form-file" type="file" accept=".jpg, .jpeg, .png" size="1">. so when google i see that it would work if i try it with javascript – Dani Commented Jan 10, 2018 at 8:14
- This sounds to me like the real problem you need to solve. There is an overlay on your element, or the ID is not as unique as you think. – A. Kootstra Commented Jan 10, 2018 at 8:33
3 Answers
Reset to default 4Following this link Is there a way to get element by XPath using JavaScript in Selenium WebDriver? I have created a keyword for clicking hidden elements. It also works for visible elements.
JS Click Element
[Documentation]
... Can be used to click hidden elements
... Dependencies
... SeleniumLibrary
... String
[Arguments] ${element_xpath}
# escape " characters of xpath
${element_xpath}= Replace String ${element_xpath} \" \\\"
Execute JavaScript document.evaluate("${element_xpath}", document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null).snapshotItem(0).click();
Use below code to click using javascript with XPath in robot framework
${ele} Get WebElement //*[text()='Logout']
Execute Javascript arguments[0].click(); ARGUMENTS ${ele}
Instead of finding element and then passing to JS, you can directly find element by ID and click it using JS.
Execute JavaScript document.getElementById("element-id").onclick()
本文标签: pythonRobot Framework Click Element using Execute JavaScriptStack Overflow
版权声明:本文标题:python - Robot Framework: Click Element using Execute JavaScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743631002a2513107.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论