|
发表于 2018-3-30 23:50:34
|
显示全部楼层
本帖最后由 ccbwx 于 2018-3-30 23:51 编辑
自写的一个
closeIEMsg = function(rows){
import win;
import winex;
import winex.mouse;
var hwnd,subHwnd;
do{
hwnd = winex.find("Internet Explorer_TridentDlgFrame")
sleep(200)
}while( !hwnd )
subHwnd = winex.findEx( hwnd,,"Internet Explorer\_Server","")
select(rows) {
case 11 {
winex.mouse.click( subHwnd,160,150) //1个按钮确定 数值你自己改一下
}
case 21 {
winex.mouse.click( subHwnd,125,150) //2个按钮确定 数值你自己改一下
}
case 22 {
winex.mouse.click( subHwnd,190,150) //2个按钮取消 数值你自己改一下
}
else {
winex.close( hwnd ) //无参关闭弹窗
}
}
} |
|