Re: [Wtr-general] How to get the row number of a checked checkbox.

2007-07-19 Thread kumari
Thank u very much. i used the same thing already and it has worked. i think is only the possible method. Thank u for answering the query. Once again Thank u very much ___ Wtr-general mailing list Wtr-general@rubyforge.org

[Wtr-general] How to get the row number of a checked checkbox.

2007-07-17 Thread kumari
In a table there are many rows with checkboxes. But only one row contain a checkbox which is set.How can i get the number of row which has the checkbox which is set ___ Wtr-general mailing list Wtr-general@rubyforge.org

Re: [Wtr-general] how can i access a link inside iframe.

2007-06-29 Thread kumari
using the index of the frame u can click the link in the frame if it is the 1st frame in the page then use the below way and click it $ie.frame(:index,1).link(:href,'value').click i think it may be useful to u. ___ Wtr-general mailing list

Re: [Wtr-general] Can Someone Explain This Pls... I Cant Find TheReason...

2007-06-29 Thread kumari
Just try it i am not sure will it work or not..try the same thing with image instead of button.it may work. ___ Wtr-general mailing list Wtr-general@rubyforge.org http://rubyforge.org/mailman/listinfo/wtr-general

Re: [Wtr-general] Not able to find the title of newly opened window.

2007-06-21 Thread kumari
thank U Bret and Vermillion I have used the URL with a regular experssion i used only (:url,/https/) and it was identified and the problem is sloved Thank u Once again ___ Wtr-general mailing list Wtr-general@rubyforge.org

Re: [Wtr-general] Not able to find the title of newly opened window.

2007-06-18 Thread kumari
i think the window doesn't have URL ,it has only tiltle which can't be caputred before clicking the link.And the title is with respect to name of the person which changes depending on the link which we r clicking. ___ Wtr-general mailing list

Re: [Wtr-general] How To Check If A Row Inside A Table Exists Or Not Count Of Rows....

2007-06-06 Thread kumari
end end end ** now use ie.table(:id, Table5).row_count().If i am write u have to get the exact row count of table without nested rows. bye Kumari ___ Wtr-general mailing

Re: [Wtr-general] return data from tablecells?

2007-06-05 Thread kumari
variable = ie.table(index,1).row_values(1) puts variable the above syntax returns the values in the row number '1' similarly we can also get the values of column. To get the particular value in a cell table = ie.table(:index,1) variable = table[1][1].to_s The above variable gives the cell value

Re: [Wtr-general] HELP!!!!!!!!! Stuck with a potential bug.

2007-06-05 Thread kumari
Hi i think this will work $ie.frame(:index,2).image(:src,/newRecord.gif/).click try this with button also as image.sometimes may not work where button will work $ie.frame(:index,2).button(:alt,/New WorkOrder/).click bye ___ Wtr-general mailing list

[Wtr-general] Not able to find the title of newly opened window.

2007-05-30 Thread kumari
Hi when i click on a table.the table opens a new window with a title which was not there in table.so i am facing a problem to identify the new window title.How can i get the TITLE of window ? as i may not click on same table all the time. ___