Re: [Wtr-general] Tab Click

2006-01-31 Thread Chintakrindi Meghanath
Subject: Re: [Wtr-general] Tab Click That's my guess too, but I'd like to hear from Meghanath. ---Michael B. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Zeljko Filipin Sent: January 30, 2006 4:08 AM To: wtr-general@rubyforge.org Subject

Re: [Wtr-general] Tab Click

2006-01-30 Thread Michael Bolton
That's my guess too, but I'd like to hear from Meghanath. ---Michael B. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Zeljko Filipin Sent: January 30, 2006 4:08 AM To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Tab Click I gue

Re: [Wtr-general] Tab Click

2006-01-30 Thread Zeljko Filipin
I guess nothing happens. Zeljko 2006/1/30, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: > When I look at this HTML... > > > > border='0'/> > align='center' valign='bottom' onClick='doCarrierTab();' > style='cursor:hand'>Detail height='3' border='0'/> > align='center' valign='bottom'>Contents heigh

[Wtr-general] Tab Click

2006-01-29 Thread mb
When I look at this HTML... Detail Contents ...I can see how clicking on Details would cause the 'doCarrierTab()' function to be called. What I don't see is the action associated with Contents. There's a background image, a class name, horizontal and vertical alignment, the word "Conte

Re: [Wtr-general] Tab Click

2006-01-29 Thread Chintakrindi Meghanath
/Contents/).click  end   # run the same test three times concurrently in separate browsersthreads = []1.times do  threads << Thread.new {tc_login}endthreads.each {|x| x.join} -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Michael BoltonSent

Re: [Wtr-general] Tab Click

2006-01-26 Thread Angrez Singh
Hi, Sorry to mail again, Missed closing square bracket. It should be ie.td(:xpath, "//td[contains(., 'Contents')]/") - Angrez On 1/27/06, Angrez Singh <[EMAIL PROTECTED]> wrote: > Hi, > > How about using XPath for getting the cell ? > > ie.td(:xpath, "//td[contains(., 'Contents')/") > > This

Re: [Wtr-general] Tab Click

2006-01-26 Thread Angrez Singh
Hi, How about using XPath for getting the cell ? ie.td(:xpath, "//td[contains(., 'Contents')/") This will return you the element which has text contents. Now you can click on this Please get the tarball from HEAD to use this option. Also read the document in docs section. Hope this helps.

Re: [Wtr-general] Tab Click

2006-01-26 Thread Sergio Pinon
Agreed. We need something to work from.   Sergio   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Michael Bolton Sent: Thursday, January 26, 2006 3:12 PM To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Tab Click   We know that they're not gener

Re: [Wtr-general] Tab Click

2006-01-26 Thread Michael Bolton
B. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chintakrindi Meghanath Sent: January 26, 2006 6:06 PMTo: wtr-general@rubyforge.orgSubject: Re: [Wtr-general] Tab Click Hi   I asked the Dev. team about the ID, they confirmed there are not generating any id   Thanks

Re: [Wtr-general] Tab Click

2006-01-26 Thread Chintakrindi Meghanath
@rubyforge.orgSubject: Re: [Wtr-general] Tab Click Did you try the solution that I mentioned. Give the td an id attribute and then you are golden. You shouldn’t have any problems.   Sergio   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chintakrindi

Re: [Wtr-general] Tab Click

2006-01-26 Thread Sergio Pinon
:[EMAIL PROTECTED] On Behalf Of Chintakrindi Meghanath Sent: Thursday, January 26, 2006 2:14 PM To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Tab Click   Hi   Can you help me, how to get that table cell id   Thanks Meghanath -Original Message

Re: [Wtr-general] Tab Click

2006-01-26 Thread Chintakrindi Meghanath
Hi   Can you help me, how to get that table cell id   Thanks Meghanath -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Sergio PinonSent: Thursday, January 26, 2006 4:12 PMTo: wtr-general@rubyforge.orgSubject: Re: [Wtr-general] Tab Click

Re: [Wtr-general] Tab Click

2006-01-26 Thread Sergio Pinon
-general@rubyforge.org Subject: Re: [Wtr-general] Tab Click   Hi   I stepped through the IRB and getting the following error exception. I used link, button , image etc   Watir::Exception::UnknownObjectException: Unable to locate object, using value a nd (?-mix:Contents

Re: [Wtr-general] Tab Click

2006-01-26 Thread Michael Bolton
PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Michael BoltonSent: Thursday, January 26, 2006 1:54 PMTo: wtr-general@rubyforge.orgSubject: Re: [Wtr-general] Tab Click So ie.button(:text, "Contents").click doesn't work?  What does your code look like?  What have you tri

Re: [Wtr-general] Tab Click

2006-01-26 Thread Chintakrindi Meghanath
returned.   Thanks Meghanath   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Sergio PinonSent: Thursday, January 26, 2006 2:03 PMTo: wtr-general@rubyforge.orgSubject: Re: [Wtr-general] Tab Click Some thoughts:   Can you give the

Re: [Wtr-general] Tab Click

2006-01-26 Thread Chintakrindi Meghanath
] [mailto:[EMAIL PROTECTED]On Behalf Of Michael BoltonSent: Thursday, January 26, 2006 1:54 PMTo: wtr-general@rubyforge.orgSubject: Re: [Wtr-general] Tab Click So ie.button(:text, "Contents").click doesn't work?  What does your code look like?  What have you tried?  Have

Re: [Wtr-general] Tab Click

2006-01-26 Thread Sergio Pinon
(“[table cell id]”).click()   That should work if you can do something like that.   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chintakrindi Meghanath Sent: Thursday, January 26, 2006 10:27 AM To: wtr-general@rubyforge.org Subject: Re: [Wtr-general] Tab Click   HI

Re: [Wtr-general] Tab Click

2006-01-26 Thread Michael Bolton
Meghanath Sent: January 26, 2006 1:27 PMTo: wtr-general@rubyforge.orgSubject: Re: [Wtr-general] Tab Click HI All   Can anyone , give  solution, I am struck at this point .   Thanks Meghanath -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Chintakrin

Re: [Wtr-general] Tab Click

2006-01-26 Thread Chintakrindi Meghanath
: [Wtr-general] Tab Click Hi   I tried with this options also , but not working. It is not throwing any error, but its not clicking that 'Tab'   Thanks Meghanath -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Beha

Re: [Wtr-general] Tab Click

2006-01-26 Thread Chintakrindi Meghanath
Hi   I tried with this options also , but not working. It is not throwing any error, but its not clicking that 'Tab'   Thanks Meghanath -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Bret PettichordSent: Wednesday, January 25, 2006 4:09 PMTo

Re: [Wtr-general] Tab Click

2006-01-25 Thread Bret Pettichord
How 'bout this:  ie.div(:id, 'LineTab').cell(:text, 'Contents').click(If this doesn't work, please describe what it actually does. Error?)BretOn 1/25/06, Chintakrindi Meghanath <[EMAIL PROTECTED]> wrote: Hi   I aleady tried with that option , but its not working   Thanks Meghanath ---

Re: [Wtr-general] Tab Click

2006-01-25 Thread Chintakrindi Meghanath
Hi   I aleady tried with that option , but its not working   Thanks Meghanath -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Bret PettichordSent: Wednesday, January 25, 2006 2:10 PMTo: wtr-general@rubyforge.orgSubject: Re: [Wtr-general]

Re: [Wtr-general] Tab Click

2006-01-25 Thread Bret Pettichord
ie.div(:id, 'LineTab').clickOn 1/25/06, Chintakrindi Meghanath <[EMAIL PROTECTED] > wrote: Hi All   My web application contains two tabs in one of the transaction "Detail" and "Contents" After entering the data in the Detail page, using will be saving that record and clicks on "Contents"

[Wtr-general] Tab Click

2006-01-25 Thread Chintakrindi Meghanath
Hi All   My web application contains two tabs in one of the transaction "Detail" and "Contents" After entering the data in the Detail page, using will be saving that record and clicks on "Contents". I am trying to make a script for that Can anyone help me out, how to click on "Contents".