RPA使用之JavaScript操作2
1、用js去滑到指定文本那里去:
document.evaluate('xpath定位表达式', document).iterateNext().scrollIntoView();
document.querySelector("JS path定位表达式").scrollIntoView();
2、js点击
document.querySelector("JS path定位表达式").click();
document.evaluate('xpath定位表达式', document).iterateNext().click();
3、js获取value值
return document.querySelector("JS path定位表达式").value();
return document.evaluate('xpath定位表达式', document).iterateNext().value();
4、将xpath定位方式转化为JS path定位方式
document.evaluate('xpath定位表达式', document).iterateNext()
5、 页面输入框改为敏感类型
copyjs path.setAttribute("type","password")
6、 页面输入框改为明文
copyjs path..setAttribute("type","text")
7、 js移除<input>readOnly属性
document.querySelector("JS path定位表达式") removeAttribute("readOnly");
document.evaluate('xpath定位表达式', document).iterateNext().removeAttribute("readOnly");
- 点赞
- 收藏
- 关注作者
评论(0)