[wtr-general] Re: Unable to acces frame by name ok on a PC but ok on an other PC with same script...pb with XP SP3 ????

2009-11-30 Thread pierrelebai...@gmail.com
I happy to say it works, I add the IP server in trust server in security option of Internet Explorer and it works perfectly... Thank's for everoby help, Best regards On Nov 29, 8:38 pm, jw wrote: > You probably have tried this, but just in case...  you get access > refused when you do > > ie.fra

Re: [wtr-general] is possible to use existing browser in watir

2009-11-30 Thread Željko Filipin
On Mon, Nov 30, 2009 at 7:07 AM, Simbolla wrote: > i was wondering that watir have feature to use existing > ( ie already opened ) browser window. http://wiki.openqa.org/display/WTR/New+Browser+Windows Željko -- watir.com - community manager watirpodcast.com - host -- You received this message

[wtr-general] Watir 1.6.5 and Ruby 1.9.1

2009-11-30 Thread aidy lewis
Hi, I am trying to install Watir 1.6.5 on Ruby 1.9.1, but this is the issue. I am encountering: E:\>gem install watir Building native extensions. This could take a while... ERROR: Error installing watir: ERROR: Failed to build gem native extension. E:/Ruby19/bin/ruby.exe extconf.rb che

Re: [wtr-general] Watir 1.6.5 and Ruby 1.9.1

2009-11-30 Thread karim rayani
The Ruby 1.9.1 installation works with firewatir on Ubuntu/linux however the windows installer is not yet completely done, this topic had been discussed on many other forums as well Karim Rayani On Mon, Nov 30, 2009 at 6:37 PM, aidy lewis wrote: > Hi, > > I am trying to install Watir 1.6.5 on Ru

Re: [wtr-general] Watir 1.6.5 and Ruby 1.9.1

2009-11-30 Thread aidy lewis
Hi, I can install Watir straight gem install watir --ignore-dependencies I think the problem has something to do with the win32 gems Aidy 2009/11/30 karim rayani : > The Ruby 1.9.1 installation works with firewatir on Ubuntu/linux however the > windows installer is not yet completely done, thi

[wtr-general] Re: select_item_in_select_list no longer working as expected

2009-11-30 Thread James
Thanks Wesley and Jari. I'll give those a try and see if they work. James On Nov 29, 11:20 am, Jari Bakken wrote: > On Mon, Nov 23, 2009 at 9:52 PM, James wrote: > > What's going on?  Did something change with this method?  Is there > > something I need to change in my code so that it can sele

Re: [wtr-general] Watir 1.6.5 and Ruby 1.9.1

2009-11-30 Thread aidy lewis
Hi, As @Jarib pointed out, I need to unzip the devkit into C:\Ruby19. Thanks Aidy 2009/11/30 aidy lewis : > Hi, > > I can install Watir straight > > gem install watir --ignore-dependencies > > I think the problem has something to do with the win32 gems > > Aidy > > 2009/11/30 karim rayani : >>

[wtr-general] Install Wiki includes Ruby 1.9.1

2009-11-30 Thread aidy lewis
http://wiki.openqa.org/display/WTR/Install+Ruby Aidy -- You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send email to watir-general@googlegroups.com Before posting, please read the following guidelines: http://wiki.openqa.

[wtr-general] How to wait until an element is visible on a page

2009-11-30 Thread QAguy
I have this piece of code on a page I am trying to script against. Done! Go to your video This div always exists, but it not always VISIBLE on the page. I want to create a wait until this element is visible on the page but not sure how to do this? Was thinking something like this but doesn't

[wtr-general] Trying to save an image

2009-11-30 Thread xguarder
Hello, I am trying to save an image using the following: $ie.image(:index,1).save(c:\\test\\image.jpg) The image does get saved. However, I get the following (in irb)... WIN32OLERuntimeError: GoBack OLE error code:80004005 in HRESULT error code:0x80020009 Exception occurred

[wtr-general] Re: Trying to save an image

2009-11-30 Thread orde
I think the argument of the save method should be enclosed in double- quotes: browser.image(:index,1).save("c:\\test\\image.jpg") Hope that helps. orde On Nov 30, 2:15 pm, xguarder wrote: > Hello, I am trying to save an image using the following: > > $ie.image(:index,1).save(c:\\test\\image.jp

[wtr-general] Re: Watir 1.6.5 and Ruby 1.9.1

2009-11-30 Thread Nigel
Someone has packaged Watir and 1.6.5 in a one-click installer. http://itest2.com/articles/2009/08/06/pror-191-preview-watir-on-ruby-1-9-1/, new version at http://itest2.com/downloads -- You received this message because you are subscribed to the Google Groups "Watir General" group. To post to

[wtr-general] Re: Trying to save an image

2009-11-30 Thread xguarder
Hi, sorry, I actually did enclose in those quotes. I just forgot to type them in for the example above. Thanks! On Nov 30, 5:31 pm, orde wrote: > I think the argument of the save method should be enclosed in double- > quotes: > > browser.image(:index,1).save("c:\\test\\image.jpg") > > Hope that

Re: [wtr-general] Re: Running Test::Unit in background gives invalid option: -b

2009-11-30 Thread shivanand desai
Hi, Have tried the "suite.rb -- -b" on the command prompt to run all my scripts on the background, but it is running in the front end. The structure what we follow is that all the "test_ " files are located in a folder called 'regression' & the suite.rb file is also in the same folder. My Sui

[wtr-general] Relative path

2009-11-30 Thread Prince3105
Hi Experts, I put my Test scripts, test data excel files and test cases file in one folder and doing testing. When i change the whole bunch to another system i am facing folder path issues. I was working QTP , where i can solve this problem by relative path. Please take a look on my below code. $

RE: [wtr-general] Relative path

2009-11-30 Thread Rohan Ojha
Hi You can try this pathToTestFile = FileUtils::pwd basePath = pathToTestFile[0..(pathToTestFile.index('/Elcom'))] {Elcom is the base folder that is the outermost folder} $:.push(basePath+'Elcom/lib') {lib