Zohar Posted August 26, 2013 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
JohnOne Posted August 26, 2013 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.
Zohar Posted September 2, 2013 Author 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
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