这是我的代码:
#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
我将如何使用上面的代码查找用户输入字段?朝着正确的方向推动将非常有帮助!