kctvt Posted September 29, 2009 Posted September 29, 2009 (edited) I open "http://5giay.vn/showthread.php?p=25906709"- Click "Click Here"- It'll be open more a new windows Internet Explorer..... I dont know how to control the new windows IE. Can you help me.....#include <IE.au3>$oIE = _IECreate ("http://5giay.vn/showthread.php?p=25906709")Sleep (5000)_IELinkClickByText ($oIE, "CLICK HERE ") ; --> Search word "CLICK HERE " and Click._IELoadWait ($oIE);= = = = Gnail Action Dont Run = = = = = $o_form = _IEFormGetObjByName ($oIE, "gaia_loginform") $o_login = _IEFormElementGetObjByName ($o_form, "Email")$o_password = _IEFormElementGetObjByName ($o_form, "passwd")$o_signin = _IEFormElementGetObjByName ($o_form, "signIn")$username = "Your Email"$password = "Your Password"_IEFormElementSetValue ($o_login, $username)_IEFormElementSetValue ($o_password, $password)_IEAction ($o_signin, "click") Edited September 30, 2009 by kctvt
kctvt Posted September 30, 2009 Author Posted September 30, 2009 Somebody help me.... Plzzzzz I can Control the first IE, but... dont know how to control the second IE. What I have to do now ?
water Posted September 30, 2009 Posted September 30, 2009 You could try $oIE2 = _IEAttach("Titlestring") Then you could control the instance as if created using _IECreate. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
kctvt Posted September 30, 2009 Author Posted September 30, 2009 ^^ Thanks Water. I can run my programe now Just add this : $IEhandle = WinGetHandle("Gmail: Email from Google - Microsoft Internet Explorer")$oIE2 = _IEAttach ($IEhandle, "HWnd")Thanks so much ^^
DaleHohm Posted September 30, 2009 Posted September 30, 2009 No need for the WinGetHndle... try $oIE2 = _IEAttach("Gmail: Email from Google") Dale Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead? Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now