浏览器中的 UFT 脚本执行 window 缓慢
UFT Script execution in Browser window slow
UFT 需要 5-6 分钟才能单击 HTML WebElement link,Web 元素配置有 css 路径。
浏览器:iexplorer 11.2; UFT 14.01
检查浏览器缩放。当设置为 100% 以外的任何值时,脚本将恢复使用智能识别,这需要更长的时间来识别。
可以使用发送键将 IE 浏览器缩放重置为 100%:
Dim mySendKeys
set mySendKeys = CreateObject("WScript.shell")
mySendKeys.SendKeys("^0") ' the ^ means ctrl in sendkey method
UFT 需要 5-6 分钟才能单击 HTML WebElement link,Web 元素配置有 css 路径。
浏览器:iexplorer 11.2; UFT 14.01
检查浏览器缩放。当设置为 100% 以外的任何值时,脚本将恢复使用智能识别,这需要更长的时间来识别。
可以使用发送键将 IE 浏览器缩放重置为 100%:
Dim mySendKeys
set mySendKeys = CreateObject("WScript.shell")
mySendKeys.SendKeys("^0") ' the ^ means ctrl in sendkey method