lillo78 Posted May 15, 2017 Posted May 15, 2017 Hi, i am trying to access to this site and get the values from it's first table. Here is my code: Local $oIE = _IECreate($sWeb) Local $oTable = _IETableGetCollection($oIE, 0) If @error Then MsgBox(0, "", "Error " & @error) So, the error i'm getting is number 7 ($_IEStatus_NoMatch) - No Match and i have no clue what's going wrong. Any idea why Autoit is not getting the table? Thank you in advance!
lillo78 Posted May 15, 2017 Author Posted May 15, 2017 Well, i think it's because i'm trying to access a table withing a frame directly with _IETableGetCollectio. I guess i should get the frames first and then get to the table. I'll try it and see what happens.
Danp2 Posted May 15, 2017 Posted May 15, 2017 Looks like the site uses a frame. You will need to get a reference to the frame and then use that object in your _IETableGetCollection instead of $oIE. Latest Webdriver UDF Release Webdriver Wiki FAQs
lillo78 Posted May 15, 2017 Author Posted May 15, 2017 Yup. Thnx @Danp2 I'll try it and keep you updated.
lillo78 Posted May 15, 2017 Author Posted May 15, 2017 (edited) yup, it works perfectly now. Here's the code: Local $oFrames = _IEFrameGetCollection($oIE) Local $iNumFrames = @extended If @error Then MsgBox(0, "", "Error " & @error) For $i = 0 To ($iNumFrames - 1) $oFrame = _IEFrameGetCollection($oIE, $i) Next Local $oTable = _IETableGetCollection($oFrame, 0) Local $aTableData = _IETableWriteToArray($oTable, True) Thank you! Edited May 15, 2017 by lillo78
Danp2 Posted May 15, 2017 Posted May 15, 2017 Your For..Next loop isn't doing anything in this case and can be replaced with $oFrame = _IEFrameGetCollection($oIE, 0) ;-) Latest Webdriver UDF Release Webdriver Wiki FAQs
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