[Wtr-general] How to click a button that has no id or name attribute

2006-01-20 Thread Paatsch, Bernd
Title: How to click a button that has no id or name attribute input class=rec_butt type=submit value=Login I have this input button that I like to click. Unfortunate it has not id or name attribute attached to it. How can I click the button? --Bernd

Re: [Wtr-general] How to click a button that has no id or name attribute

2006-01-20 Thread Sergio Pinon
Title: How to click a button that has no id or name attribute You can just click the button by using the value attribute: browser.button(:value, Login).click; That should work just fine. Sergio From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paatsch,