Search the Community
Showing results for tags '_IENavigate'.
-
Hi - I am simply trying to loop through pages of a website using _IENavigate.. For some reason it freezes on page 2, rather than continuing through the loop. I have been trying to fix this for hours and I am really at the end of my tether with it... Any experienced Autoit'ers fancy having a bash for me? I've tried sleep, messing with the IE.au3 file, rewriting the whole script to try to target the link after the active link in the nav menu....EVERYTHING. Just a beginner who is thoroughly stuck after hours of trying. #include <MsgBoxConstants.au3&g
-
Hi, I'm trying to navigate down my company's website. I successfully use _IELinkClickByText to open the first link ("Today's Events") which opens a new page with a different address. Then I need to click on another link ("Meetings") on this new page to get to my destination but I can't get it right. I cannot use _IENavigate as the address link of "Meetings" can change. I cannot find any good example on this forum and the web to follow, so I hope someone can help. #include <IE.au3> ;Main Page $oIE =_IECreate ("http://abc/xyz/", 0, 1, 1, 1) WinSetState("Report - ABC - Windows
-
I'm trying to get table data from a webpage that needs to be navigated to. I am currently using _IECreate to create an IE object, then using some more code to login to the site. After login is confirmed, I need to navigate to another page and get table data from it. My code looks like this: $oIE = _IECreate("url") ; run login script _IENavigate($oIE,"https://.....tablepage") $oTable = _IETableGetCollection($oIE) ConsoleWrite("oTable = " & $oTable & @CRLF) ConsoleWrite("oTable error = " & @ERROR) The object $oTable appears to be empty, and an object type error is returned.
-
I use a lot of IE functions in my scripts and find it really annoying when I try to use _IENavigate to leave a webpage and I get popups saying things like "Are you sure you want to leave this page?". I searched the forum and could not find a solution that I liked so I created this function. I hope others find it useful and as always I am open to any constructive criticism (that's how we learn). _ProcessGetParent() function taken from MrCreatoR's post (thanks MrCreatoR) #include <IE.au3> ;This page currently has displays a popup when you try to navigate away from the page $any_url