[wtr-general] Re: watir dynamic value

2010-09-06 Thread Chuck van der Linden
strange it looks like the OP deleted their message, we now have a thread that basically starts in the middle On Sep 6, 1:37 am, Željko Filipin wrote: > On Sun, Sep 5, 2010 at 7:56 PM, nix wrote: > > Iam unable to click on a dynamically generated value. > > How would you know which link to click

Re: [wtr-general] HTML element order different in IE8 from IE7

2010-09-06 Thread Željko Filipin
On Sat, Sep 4, 2010 at 4:36 PM, Lisa Crispin wrote: > I tried to create a Jira account to enter this bug and got a npe, rats. Lisa, thanks for letting us know. I will contact Patrick Lightbody ( http://twitter.com/plightbo), he is in charge of Jira. Željko -- watir.com - community manager watirp

Re: [wtr-general] Testing flex application

2010-09-06 Thread Željko Filipin
On Sat, Sep 4, 2010 at 12:30 PM, chunchu kartheek wrote: > Can anyone help me how to test flex apps using Watir Introduction (the first page of Watir Tutorial) says: "Watir will not work with ActiveX plugin components, Java Applets, Macromedia Flash, or other plugin applications." http://wiki.op

Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-06 Thread Željko Filipin
http://stackoverflow.com/questions/3643179/failed-watir-installation-server-2003 -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. You received this message because you are subscribed to http://groups.google.com/group/watir-general To post: wati

[wtr-general] Minor changes to watir.com

2010-09-06 Thread Željko Filipin
I have just noticed this on watir.com: "They support Internet Explorer on Windows, Firefox on Windows, Mac and Linux, Safari on Mac, Chrome on Windows and Flash testing with Firefox." I have changed it to: "They support Internet Explorer on Windows, Firefox and Chrome on Windows, Mac and Linux a

Re: [wtr-general] watir dynamic value

2010-09-06 Thread Željko Filipin
On Sun, Sep 5, 2010 at 7:56 PM, nix wrote: > Iam unable to click on a dynamically generated value. How would you know which link to click if you were doing it manually? In other words, is any portion of the link not changing? Željko -- watir.com - community manager watirpodcast.com - host testi

Re: [wtr-general] using Watir to open tab in current open browser

2010-09-06 Thread Željko Filipin
On Mon, Sep 6, 2010 at 1:46 AM, mattwatir wrote: > I have been trying to find out how to allow Watir to open a tab in a > current browser (which is already opened) with it opening a new > browser window... Why do you care if a page is opened in a tab or in a window? If the new page is opened aft

Re: [wtr-general] How to pass variable to attach method

2010-09-06 Thread Željko Filipin
On Mon, Sep 6, 2010 at 6:55 AM, xulivan wrote: > @ie = Watir::IE.attach(:title,/.*MatchString.*/) If I understood what you want, this should work (not tested): how = :title what = /.*MatchString.*/ @ie = Watir::IE.attach(how, what) or how = :url what = "http://stackoverflow.com/"; @ie = Watir: