Zohar Posted August 26, 2013 Share Posted August 26, 2013 (edited) Hi The scenario is this: There is a web page which was not created by me, I visit it with Internet Explorer, and in that page there are some Tables. In one of the tables, there's one certain Row that I want to hide. I don't want to see it, and it's not critical to the page. (so I can either Hide it, or Delete it even) Which commands should I use? 1) Because this is a Table, it doesn't have an ID or Name. So what would be the right way to get an Object to that table? 2) Rows also don't have an ID/Name. So how would I reference the Row? Maybe If I have an Object referencing a Table, then I can get an Array of the Table Rows? 3) What command Hides/Deletes a Row? Thank you very much Zohar Edited September 2, 2013 by Zohar Link to comment Share on other sites More sharing options...
JohnOne Posted August 26, 2013 Share Posted August 26, 2013 Get reference to the table, read it, alter if however you please and write it back. _IEDocWriteHTML or maybe _IEDocInsertHTML AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Link to comment Share on other sites More sharing options...
Zohar Posted September 2, 2013 Author Share Posted September 2, 2013 Hi Thank you vfor your reply. I achieved it differently, this way: $Table.rows(5).style.display="none" Where $Table is the Table Object EKY32 1 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