sunilt Posted April 8, 2019 Share Posted April 8, 2019 #include<IE.au3> Call("SignIn") Func SignIn() Global $oIE = _IECreate("http://signin@com",0,1,1,0) Sleep(10000) Local $usern = _IEGetObjByName($oIE,"username") Local $pass = _IEGetObjByName($oIE,"password") _IEFormElementSetValue($usern,"sunny") _IEFormElementSetValue($pass,"******") Send("{ENTER}") EndFunc I am trying this code, but I am getting the following error. Can someone guide me on this. --> IE.au3 T3.0-2 Error from function _IELoadWait, $_IESTATUS_ClientDisconnected (-2147023179, Browser has been deleted prior to operation.) Link to comment Share on other sites More sharing options...
Danp2 Posted April 8, 2019 Share Posted April 8, 2019 Have you tried changing the _IECreate line to use HTTPS instead of HTTP? Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
jchd Posted April 8, 2019 Share Posted April 8, 2019 (edited) Is http://signin@com a valid URL? Doubtfully. Edited April 8, 2019 by jchd Spelling FrancescoDiMuro 1 This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted April 8, 2019 Moderators Share Posted April 8, 2019 Moved to the appropriate forum, as the Developer General Discussion forum very clearly states: Quote General development and scripting discussions. If it's super geeky and you don't know where to put it - it's probably here. Do not create AutoIt-related topics here, use the AutoIt General Help and Support or AutoIt Technical Discussion forums. Moderation Team Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
sunilt Posted April 9, 2019 Author Share Posted April 9, 2019 Hi Danp2, I tried the way you told, but still i am getting the same error. Link to comment Share on other sites More sharing options...
Danp2 Posted April 9, 2019 Share Posted April 9, 2019 This has come up numerous times previously. Usual this is the result of switching security zones. You can search the forums and look for an explanation / solution, or you can likely solve your situation by ignoring the error and adding an _IEAttach to obtain the browser reference. P.S. As @jchd pointed out, the URL you posted isn't valid, so hopefully that's just your way of removing the actual URL from the code. 😉 Latest Webdriver UDF Release Webdriver Wiki FAQs Link to comment Share on other sites More sharing options...
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