点击含下拉菜单的列表/表单按钮:通过JS创建虚拟按钮并点击
${JsCode} | Get Element Attribute | XPATH=//table[@class=‘mnubar‘]//tr//td//span[text()=‘${MenuArr[0]}‘ and @class=‘mnuBtn‘]/parent::span/table[@class=‘mnuList‘]//tr/td[text()=‘${MenuArr[1]}‘]/parent::tr@action
注释:
1、MenuArr为传入的需要点击的按钮路径,如:新增/报价单
2、将对应按钮路径的@action属性的JS传给${JsCode},便于下面点击虚拟按钮时调用该JS动作。
3、action属性值:if (_iLocked<=0) {_lock();try{openAddWin(‘报价单);} catch(e){} finally{_unlock();}}
Execute Javascript | var button=window.document.getElementById(‘rfs_Button‘);if(button)window.document.body.removeChild(button);
Execute Javascript | var button=document.createElement(‘input‘);button.type=‘button‘;button.id=‘rfs_Button‘;button.value=‘RFS_Button‘;button.onclick=function(){${JsCode}};window.document.body.insertBefore(button, window.document.body.firstChild);
click button | rfs_Button
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。