为什么“ ie.waitforcomplete 10000”不起作用?

时间:2019-09-11 03:01:11

标签: g1ant

根据ie.waitforcomplete命令的语法,它以毫秒为单位进行输入,但是当我运行此代码时,它会按原样运行10秒钟。

ie.open google.com nowait true
window ✱internet✱
ie.seturl g1ant.com 
ie.waitforcomplete 1000
ie.seturl duckduckgo.com

1 个答案:

答案 0 :(得分:2)

根据手册的建议,ie.waiforcomplete“暂停脚本执行,直到加载网页为止”。第一个参数是 val daysOfWeek = List("Mon","Tues","Wed","Thur","Fri","Sat","Sun") val day = "Mon" for (day <- daysOfWeek) yield { day match { case "Mon" => "is boring" case otherDay => otherDay print(day) } } ,它“指定G1ANT.Robot等待命令执行的时间(以毫秒为单位)”。它只是意味着当您拥有:

timeout

它将等待最长1000毫秒(1秒)的时间来加载网页,如果失败,则会发生异常。

下面的代码意味着它将等待最长10秒的时间。

ie.waitforcomplete 1000