代码如下:
error=Browser("Browser").Dialog("Microsoft Internet Explorer").Static("该用户名未被占用!").getRoproperty("text")
if (error="该用户名未被占用!" ) then
Browser("Browser").Dialog("Microsoft Internet Explorer").WinButton("确定").Check CheckPoint("确定_3")
Browser("Browser").Dialog("Microsoft Internet Explorer").WinButton("确定").Click
else
msgbox(error)
End If
我运行时,不会运行
Browser("Browser").Dialog("Microsoft Internet Explorer").WinButton("确定").Check CheckPoint("确定_3")
Browser("Browser").Dialog("Microsoft Internet Explorer").WinButton("确定").Click
两断代码,而是直接运行msgbox(error),请哪位高手帮我解答一下,不胜感激!!!
msgbox出来是什么?看看字符串哪个地方不对就应该清楚了。
确认属性没取错的话,可能是空格之类问问题一般trim一下可以解决
error=Trim(Browser("Browser").Dialog("Microsoft Internet Explorer").Static("该用户名未被占用!").getRoproperty("text"))