Re: [Wtr-general] How to click on image associated with link

2007-01-22 Thread Željko Filipin

On 1/19/07, minal [EMAIL PROTECTED] wrote:


For some strange resons ie.cell(:id, 10TD37).click doesn't work on my
application.



I think you need to have watir 1.5 for that.
--
Zeljko Filipin
zeljkofilipin.com
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

Re: [Wtr-general] How to click on image associated with link

2007-01-19 Thread minal
Thanks to both of you for your replies. 

Clicking on image based on IMG tag attributes, will not work for this 
application, since each row in table has same image with same IMG-tag 
attributes.

For some strange resons ie.cell(:id, 10TD37).click doesn't work on my 
application.

But I found work around for that, in case anybody is looking solution for 
similar problems. 

my_row = ie.row( :id , TR37)
links = tabs[my_row.column_count()].document().all.tags(A)
my_link=
 links.each do |p|
my_link=p.invoke(href)  # since there is only one A-tag in each cell, we 
are ok 
 end
ie.goto(my_link)  # this is same as clicking on image

minal
-
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=6176messageID=17403#17403
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


[Wtr-general] How to click on image associated with link

2007-01-18 Thread minal
Hi,

I am new to ruby/watir. Please see HTML code snippet below. I want to click on 
image with title Delete survey, responses, emails of table cell with id = 
10TD37. How do I do that.

Thanks

Code snippet:

   TR id=TR36 onmouseover=style.backgroundColor='#ebebeb'; 
onmouseout=style.backgroundColor='#ff'
  TD id=0TD36 vAlign=center align=middle width=1%IMG 
src=../images/PlainSurvey.gif /TD
  TD id=2TD36 align=left width=40%LABEL for=2544SPS 
Template/LABEL /TD
  TD id=3TD36 align=middle width=2%2544 /TD
  TD id=4TD36 align=middle width=15% 08/22/2003 /TD
  TD id=6TD36 align=middle width=10%07/26/2006 /TD
  TD id=5TD36 align=middle width=10%A 
href=Javascript:ShowAMReport(1,2544,737);9/A FONT 
color=red(A 
href=Javascript:ShowAMReport(2,2544,737);8/A)/FONT /TD
  TD id=6TD36 align=middle width=10%8 /TD
  TD id=7TD36 align=middle width=10%A 
href=../SurveyEditor/SurveyEditor.asp?SurveyID=2544IMG 
title=Modify existing survey components; define  manage upload 
variables 
src=../images/home/design_icon.gif border=0/A /TD
  TD id=8TD36 align=middle width=10%A 
href=../DeploySurvey/DeploySurvey.asp?SurveyID=2544IMG 
title=Manage email communications; deploy PopUp programs; manage 
action alerts 
src=../images/home/deploy_icon.gif border=0/A /TD
  TD id=9TD36 align=middle width=10%A 
href=../SurveyResults/ResultsByQuestion.asp?SurveyID=2544IMG 
title=Manage data analysis; view real-time results; generate 
reports; create filters; view response rate reports 
src=../images/home/analyze_icon.gif border=0/A /TD
  TD id=10TD36 align=middle width=10%A 
href=../SurveyorAdministrator/Adminpage.asp?SurveyID=2544IMG 
title=Delete survey, responses, emails 
src=../images/home/administer_icon.gif border=0/A /TD/TR
TR id=TR37 onmouseover=style.backgroundColor='#ebebeb'; 
onmouseout=style.backgroundColor='#ff'
  TD id=0TD37 vAlign=center align=middle width=1%IMG 
src=../images/PlainSurvey.gif /TD
  TD id=2TD37 align=left width=40%LABEL for=2420MPS 
Template/LABEL /TD
  TD id=3TD37 align=middle width=2%2420 /TD
  TD id=4TD37 align=middle width=15% 07/15/2003 /TD
  TD id=6TD37 align=middle width=10%01/10/2007 /TD
  TD id=5TD37 align=middle width=10%A 
href=Javascript:ShowAMReport(1,2420,737);629/A FONT 
color=red(A 
href=Javascript:ShowAMReport(2,2420,737);627/A)/FONT /TD
  TD id=6TD37 align=middle width=10%362 /TD
  TD id=7TD37 align=middle width=10%A 
href=../MPS/MPSComposeSurvey.asp?SurveyID=2420IMG 
title=Modify existing survey components; define  manage upload 
variables 
src=../images/home/design_icon.gif border=0/A /TD
  TD id=8TD37 align=middle width=10%A 
href=../DeploySurvey/DeploySurvey.asp?SurveyID=2420IMG 
title=Manage email communications; deploy PopUp programs; manage 
action alerts 
src=../images/home/deploy_icon.gif border=0/A /TD
  TD id=9TD37 align=middle width=10%A 
href=../SurveyResults/ResultsByQuestion.asp?SurveyID=2420IMG 
title=Manage data analysis; view real-time results; generate 
reports; create filters; view response rate reports 
src=../images/home/analyze_icon.gif border=0/A /TD
  TD id=10TD37 align=middle width=10%A 
href=../SurveyorAdministrator/Adminpage.asp?SurveyID=2420IMG 
title=Delete survey, responses, emails 
src=../images/home/administer_icon.gif border=0/A 
  /TD/TR/TABLE/TD/TR/TABLE/CENTER
P/FORM /P

/BODY
/HTML
-
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=6176messageID=17322#17322
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general