[wtr-general] Re: click link in out of focus

2009-05-01 Thread venky
Hi All, Thanks a lot its working fine... Regards, Venkat http://www.prog2impress.com/ On Apr 13, 11:48 pm, Chuck van der Linden sqa...@gmail.com wrote: I think your nomenclature is what is confusing people.  there is a parameter of some objects that can set the to visible or not visible..

[wtr-general] jssh (firefox) and unicode

2009-05-01 Thread Stacia
I've been working all day to try to get unicode displayed in text fields properly. I've come to the conclusion that probably the JSSH socket connection doesn't support having unicode sent over it - is there anyone who can confirm this? I saw a fix for Chinese, but this was for IE, and other fixes

[wtr-general] Re: Watir vs Selenium

2009-05-01 Thread Tran Tuan Vinh 10/08
my idea is collection of library of Selenium is worst than watir. but Selenium support for multi -browser is better. and it have some another package for using many OS On May 1, 2:51 pm, venky venkatesh...@gmail.com wrote: Hi All, I had worked with watir. I would like to explore selenium too

[wtr-general] Stripping url

2009-05-01 Thread ash
Having searched this group, plus the wiki, plus the mail archives I am still a little confused as to the syntax format for stripping text from a url. Apologies if there is a thread covering this already but I am now getting frustrated with this as it seems such a simple task but I can't get my

[wtr-general] Re: Stripping url

2009-05-01 Thread karim rayani
do one thing if you know ruby somewhat url=ie.url url_splitted=url.split(?) puts url_splitted[0] should give you the base url On Fri, May 1, 2009 at 5:00 PM, ash ashbr...@gmail.com wrote: Having searched this group, plus the wiki, plus the mail archives I am still a little confused as to

[wtr-general] Re: jssh (firefox) and unicode

2009-05-01 Thread John Kolokotronis
I'm having similar problems working with double byte unicode, like Japanese and yes, I'm certain the problem is with the jssh extension - unfortunately, I don't know of any real solution and given that jssh is abandonware, it's very hard to get any help with it on any platform. Unicode works for

[wtr-general] Re: Stripping url

2009-05-01 Thread ash
Spot on, thanks. I don't really know Ruby yet but using your advice I got it working. My new code; require 'watir' test_site=http://www.blah.com/uk/home.asp?src=ash; ie = Watir::IE.new ie.speed = :fast ie.goto test_site url=ie.url url_splitted=url.split(?) if url_splitted[0] ==

[wtr-general] Re: click_no_wait and click! not working javascript popup

2009-05-01 Thread ash
I am also receiving the TimeOutException but am using solution #4 from http://wiki.openqa.org/display/WTR/JavaScript+Pop+Ups so do not have anywhere to place the sleep. Segment of my script; ie.button(:class, button_checkout).click_no_wait hwnd = ie.enabled_popup(5) if (hwnd) #yeah! a popup

[wtr-general] Re: Watir vs Selenium

2009-05-01 Thread Chris McMahon
I've worked with Selenium the past two years. It's an excellent tool. For one thing, support for multiple browsers is excellent because the way Selenium goes about manipulating pages is consistent from browser to browser. Watir is rapidly achieving support for multiple browsers, but it is

[wtr-general] Re: Connecting Watir to an IE control in a dotnet app?

2009-05-01 Thread mwolfe
I'm trying to do this as well. see my blog for more details: http://www.wolfewebservices.com/blog/attaching-watir-embedded-ie-browser On Mar 19, 11:26 pm, Alister Scott alister.sc...@gmail.com wrote: Hi David, Did you ever get this to work? I am trying to do a similar thing with

[wtr-general] Re: Connecting Watir to an IE control in a dotnet app?

2009-05-01 Thread Paul Rogers
can you use spy++ to get the hwnd of the brower and attach using that? Paul On Fri, May 1, 2009 at 2:06 PM, mwolfe mwolf...@gmail.com wrote: I'm trying to do this as well. see my blog for more details: http://www.wolfewebservices.com/blog/attaching-watir-embedded-ie-browser On Mar 19,