Re: [Wtr-general] Another JavaScript Question

2006-01-26 Thread Cain, Mark
This is what I would try given the html you sent. $ie.table( :index, 1 )[1][3].click If this table is nested inside other tables you will need to get the index number by counting the tablesstarting at the top-most tableby doing a: Right click in the web page and select View

Re: [Wtr-general] Another JavaScript Question

2006-01-26 Thread Sergio Pinon
This might be another possibility to try: Get the underlying _javascript_ DOM object from the browser: js_dom = ie_browser.getDocument(); At this point you can execute any _javascript_ methods you want against the browser. Since you dont have any name or id attributes you can get

[Wtr-general] Another JavaScript Question

2006-01-25 Thread David Solis
All,I've been trying desperately for over week to figure out how to click on _javascript_ button to no avail. I have tried just about everybody's suggestions. Mark Cain's solution posted last weeklooked very promising, but can't get it to work. Here is the code that contains the buttons