使用AutoIT查找嵌入式浏览器的元素

时间:2013-06-04 17:20:07

标签: autoit

这是我的代码:

#include <GUIConstantsEx.au3>
GUICreate( "Main", 1200, 700 )
$viewer = ObjCreate( "Shell.Explorer.2" )
GUICtrlCreateObj( $viewer, 5, 5, 1000, 690 )
$viewer.navigate( "url_for_website" )
GUISetState( @SW_SHOW )
$running = 1
While $running
 $event = GUIGetMsg()
 Switch $event
  Case $GUI_EVENT_CLOSE
     $running = 0
 EndSwitch
WEnd

如何使用上面的代码查找用户输入字段?向正确的方向推进将非常有帮助!

1 个答案:

答案 0 :(得分:0)

这应该可以帮助你理解,因为这是一个很好的IE脚本。此外,它应该让您了解如何实施您想要做的事情:: http://www.autoitscript.com/forum/files/file/227-ieau3/