Re: [wtr-general] Watir 1.9.0 released with full support for Ruby 1.8.7 and IE9

2011-06-15 Thread Charley Baker
Yes. It's been pushed to the gem servers. -c On Wed, Jun 15, 2011 at 12:19 PM, a b wrote: > Hi, > gem install watir > > > will install the latest release? > > Thanks > > On Tue, Jun 14, 2011 at 9:37 PM, Hugh McGowan wrote: > >> Hi all, >> >> Watir 1.9.0 has been released. This release includes:

Re: [wtr-general] Watir 1.9.0 released with full support for Ruby 1.8.7 and IE9

2011-06-15 Thread a b
Hi, gem install watir will install the latest release? Thanks On Tue, Jun 14, 2011 at 9:37 PM, Hugh McGowan wrote: > Hi all, > > Watir 1.9.0 has been released. This release includes: > > * Full support for IE9 > * Full support for Ruby 1.8.7 > * Remove Autoit (replaced with Rautomation) >

Re: [wtr-general] watir-webdriver & firebug

2011-06-15 Thread a b
Thanks millions Jari! I working perfect, Cristina Dumitrescu crist...@dumitrescu.ca On Tue, Jun 14, 2011 at 5:07 PM, Jari Bakken wrote: > You can either > > (a) tell WebDriver to use your default profile: > > browser = Watir::Browser.new(:firefox, :profile => "default") > > (b) install the Fi

[wtr-general] Watir 1.9.0 released with full support for Ruby 1.8.7 and IE9

2011-06-14 Thread Hugh McGowan
Hi all, Watir 1.9.0 has been released. This release includes: * Full support for IE9 * Full support for Ruby 1.8.7 * Remove Autoit (replaced with Rautomation) * Remove WinClicker (RIP) Thanks! Hugh -- Before posting, please read http://watir.com/support. In short: search before you as

Re: [wtr-general] watir-webdriver & firebug

2011-06-14 Thread Jari Bakken
You can either (a) tell WebDriver to use your default profile: browser = Watir::Browser.new(:firefox, :profile => "default") (b) install the Firebug extension programatically on launch: prof = Selenium::WebDriver::Firefox::Profile.new prof.add_extension("/path/to/firebug.xpi") browser = Watir:

[wtr-general] watir scripts in windows scheduled task

2011-06-14 Thread chachster
Hi, I've heard that running watir scripts via the windows scheduled task might not be supported and generally doesn't work too well? If so, is there a workaround for this (ie: stopping the machine from getting locked, etc...). I'm currently using Watir 1.8,1 and Ruby 1.8.7 and have 2 scheduled t

[wtr-general] watir-webdriver & firebug

2011-06-14 Thread a b
Hi, I've noticed that when we run the tests on Firefox3 using watir-webdriver we do not have access to firebug. So we cannot inspect the elements; what we have post etc. We have to go to replicate the steps manually. Do you know if there is any specific setting in order to have access to firebug

Re: [wtr-general] watir-webdriver instead of firewatir- Showing error

2011-06-09 Thread Amit Bobade
Thank you very very much Cristina and Jari. :) I tried - gem update childprocess and it worked. Thanks. On Thu, Jun 9, 2011 at 7:11 PM, a b wrote: > Or if it is still not working try to uninstall everything, even ruby; > delete the remaining files and perform a fresh installation. > >

Re: [wtr-general] watir-webdriver instead of firewatir- Showing error

2011-06-09 Thread Jari Bakken
It's a dependency issue between childprocess and selenium-webdriver. This should solve it: gem update childprocess Den 9. juni 2011 kl. 14:28 skrev Amit Bobade : Dear Željko, Thanks for your reply. I tried as you suggested but it didn't work for me. I got following error for the same code. E

Re: [wtr-general] watir-webdriver instead of firewatir- Showing error

2011-06-09 Thread a b
Or if it is still not working try to uninstall everything, even ruby; delete the remaining files and perform a fresh installation. I have encountered similar errors and that is what i did. Cristina On Thu, Jun 9, 2011 at 9:25 AM, a b wrote: > Hi Amit, > > try: > > > browser = Watir::Browser.new

Re: [wtr-general] watir-webdriver instead of firewatir- Showing error

2011-06-09 Thread a b
Hi Amit, try: browser = Watir::Browser.new :ff browser.goto("http://www.gosocially.com/index.php";) Cristina On Thu, Jun 9, 2011 at 6:04 AM, Amit Bobade wrote: > Dear All: > > I want to use watir-webdriver instead of firewatir. I installed > watir-webdriver now but when I execute my script

Re: [wtr-general] watir-webdriver instead of firewatir- Showing error

2011-06-09 Thread Željko Filipin
2011/6/9 Amit Bobade > Could not find ffi (~> 0.6.3) Looks like you have uninstalled all versions of ffi. This could help: gem install ffi Željko -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.g

Re: [wtr-general] watir-webdriver instead of firewatir- Showing error

2011-06-09 Thread Amit Bobade
Dear Željko, Thanks for your reply. I tried as you suggested but it didn't work for me. I got following error for the same code. ERROR: E:/Ruby187/lib/ruby/site_ruby/1.8/rubygems/dependency.rb:247:in `to_specs': Could not find ffi (~> 0.6.3) amongst [abstract-1.0.0, actionmailer-3.0.7, actionpa

Re: [wtr-general] watir-webdriver instead of firewatir- Showing error

2011-06-09 Thread Željko Filipin
On Thu, Jun 9, 2011 at 12:04 PM, Amit Bobade wrote: > E:/Ruby187/lib/ruby/site_ruby/1.8/rubygems.rb:242:in `activate': can't activate ffi (>= 1.0.7, runtime) for ["selenium-webdriver-0.2.1", "watir-webdriver-0.2.4"], already activated ffi-0.6.3-x86-mingw32 for This sounds like rubygems problem:

[wtr-general] watir-webdriver instead of firewatir- Showing error

2011-06-09 Thread Amit Bobade
Dear All: I want to use watir-webdriver instead of firewatir. I installed watir-webdriver now but when I execute my script I am getting following error. Why it is so? Error: E:/Ruby187/lib/ruby/site_ruby/1.8/rubygems.rb:242:in `activate': can't activate ffi (>= 1.0.7, runtime) for ["selenium-we

Re: [wtr-general] Watir 1.9.0 Release Candidate - Ruby 1.8.7 and IE9

2011-06-08 Thread Charley Baker
Awesome, works well for me, both on Windows and Mac. -c On Tue, Jun 7, 2011 at 8:11 PM, Hugh McGowan wrote: > Hi all, > > We've got a release candidate for Watir. If you're interested in > checking out the release before we go final, you can get it using: > > gem install watir --pre > > This re

[wtr-general] Watir 1.9.0 Release Candidate - Ruby 1.8.7 and IE9

2011-06-07 Thread Hugh McGowan
Hi all, We've got a release candidate for Watir. If you're interested in checking out the release before we go final, you can get it using: gem install watir --pre This release includes: * Support for IE9 * Full support for Ruby 1.8.7 * Remove Autoit (replaced with Rautomation) * Remove

Re: [wtr-general] watir-webdriver

2011-06-07 Thread a b
Awesome, is working! Thanks millions! Cristina On Mon, Jun 6, 2011 at 1:38 PM, Jari Bakken wrote: > On Mon, Jun 6, 2011 at 6:57 PM, a b > wrote: > > > > For instance: > > That is a label : > > > > > class="macstring">Create User > > > > This isn't valid HTML, as the error message points

Re: [wtr-general] watir-webdriver

2011-06-06 Thread Jari Bakken
On Mon, Jun 6, 2011 at 6:57 PM, a b wrote: > > For instance: > That is a label : > >     class="macstring">Create User > This isn't valid HTML, as the error message points out. Since the parent span is unique, I would in this case start from that and locate the first span inside it: browser.

Re: [wtr-general] watir-webdriver

2011-06-06 Thread Ashok Tulachan
*For instance: That is a label : Create User* *I was reading it: createUserLbl = $browser.span(:class => "macstring", :string => "create_user").text.to_s puts createUserLbl * Try this require 'watir/webdriver' require 'watir' *createUserLbl = $browser.span(:class => "macstring

[wtr-general] watir-webdriver

2011-06-06 Thread a b
Hi all, do you know where can we find sone documentation about watir-webdriver? I decided to go with watir-webdriver.When I run my scripts I can see that some components are not recognised the way I used to do using firewatir. For instance: That is a label : Create User I was reading it:

Re: [wtr-general] Watir With Login App(Gmail)

2011-06-06 Thread Željko Filipin
On Sun, Jun 5, 2011 at 3:35 PM, edipofederle wrote: > is a simple test that logs into a gmail account and a text verefica > (Mail) via XPath Instead of @fff.cell(:xpath, '/html/body/div[1]/div[2]/div/div[2]/div[1]/div[1]/div[1]/div[1]/div[@id=\':r7\']/span').text I would try @fff.cell(:id=> ':

[wtr-general] Watir With Login App(Gmail)

2011-06-05 Thread edipofederle
Hello everyone, is my first contact with Watir and am really enjoying it, but I have a problem to run the following test: https:/ /gist.github.com/1008964 is a simple test that logs into a gmail account and a text verefica (Mail) via XPath, but the test fails and says that the element was not fou

Re: [wtr-general] Watir page objects variables

2011-06-04 Thread Dmitriy Korobskiy
Rahul, it looks like you are testing using Cucumber, and it's really a Cucumber question. It looks like it should work, instance variables in Cucumber live for a duration of one scenario, if I'm not mistaken. If you want, you can try to switch from Ruby instance variables to class variables:

Re: [wtr-general] Watir Grid Examples Help

2011-06-03 Thread Tim Koopmans
00 > *To: * > *ReplyTo: * watir-general@googlegroups.com > *Subject: *Re: [wtr-general] Watir Grid Examples Help > > Hi Usman, I can probably help you =) > > The correct order to start up a grid is: > 1. start the controller on a central machine e.g. > controller > &g

Re: [wtr-general] Watir Grid Examples Help

2011-06-03 Thread usmanhhussain
-general@googlegroups.com Date: Fri, 3 Jun 2011 22:27:13 To: Reply-To: watir-general@googlegroups.com Subject: Re: [wtr-general] Watir Grid Examples Help Hi Usman, I can probably help you =) The correct order to start up a grid is: 1. start the controller on a central machine e.g. controller when

Re: [wtr-general] Watir Grid Examples Help

2011-06-03 Thread Tim Koopmans
Hi Usman, I can probably help you =) The correct order to start up a grid is: 1. start the controller on a central machine e.g. controller when it starts up it will tell you what its URI is. This is what you'll use to connect other providers e.g. I, [2011-06-04 08:22:15 #99844] INFO -- : Control

Re: [wtr-general] Watir page objects variables

2011-06-03 Thread Basim Baassiri
>From reading your code, it looks like you are using the page objects pattern in a good way. I would be curious to see the entire stack trace of the exception you are describing On Fri, Jun 3, 2011 at 12:44 PM, Rahul Sharma wrote: > Hi Guys, > > I have got a problem that I run into frequently us

[wtr-general] Watir page objects variables

2011-06-03 Thread Rahul Sharma
Hi Guys, I have got a problem that I run into frequently using the page object pattern for Watir and was wondering if anyone could help. I have a booking page on which a user could click book button to book an event. If the user is eligible for the booking, a Succesful booking page is returned an

[wtr-general] Watir Grid Examples Help

2011-06-03 Thread Usman Hussain
Hi Guys, I wanted to get my tests to run parallel to one another so I went to GitHub/WatirGrid and downloaded the whole project. I then began to run the examples. I was able to one tests running in two different browsers (firefox and chrome). So then I thought let me run the parallel test provid

Re: [wtr-general] Watir does not highlight accessed object?

2011-05-26 Thread Željko Filipin
You should create a ticket in jira: http://jira.openqa.org/browse/WTR Or even beter, send a pull request: https://github.com/bret/watir Zeljko On Thursday, May 26, 2011, Sergey Erokhin wrote: > and lastas i understand > if in element.rb replace  alias style currentstyle > to  def_wrap_guard :

[wtr-general] Watir does not highlight accessed object?

2011-05-20 Thread Chengwei Lin
Hi, I used to see Watir highlighting the accessed IE object in yellow. However, after I upgraded my Ruby to 1.8.7 and Watir to 1.8.1, the highlight does not work anymore. For example, Watir will still print characters in a text field, but it won't highlight that text field in yellow as it used to.

[wtr-general] Watir Podcast #45: Bret Pettichord’s Opening Keynote at Selenium Conference 2011

2011-05-18 Thread Željko Filipin
http://watirpodcast.com/45-bret-pettichords-opening-keynote-at-selenium-conference-2011/ Željko -- watir.com - community manager watir.com/book - author watirpodcast.com - host viaqa.mobi conference on software testing - organizer -- Before posting, please read http://watir.com/support. In short

Re: [wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Ashok Tulachan
Thank you very much tim, I googled it till my fingers got tired and hence came here ;-). Btw, i am reading the ruby book online which is not that helpful. Thanks again. Ashok Tulachan On Tue, May 17, 2011 at 7:53 PM, Tim Koopmans wrote: > Pro tip: buy yourself a copy of ruby cookbook, or ju

Re: [wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Tim Koopmans
Pro tip: buy yourself a copy of ruby cookbook, or just google it. european_date = '%d/%m/%y' Time.now.strftime(european_date) Cheers, Tim @90kts On Wed, May 18, 2011 at 10:45 AM, Ashok Tulachan wrote: > > Thanks you very much for your help,  Tim. > > It worked fine. I don't know if it's rea

Re: [wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Ashok Tulachan
Thanks you very much for your help, Tim. It worked fine. I don't know if it's really good place to ask about this ruby question but here it is. I am trying to get the system date in this format like 05-17-2011 such that the script picks up this date and puts in the application. When i write Tim

Re: [wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Tim Koopmans
If Jari is asleep since it's 2am in Oslo, the remote url syntax is the url of the remote webdriver server e.g. Watir::Browser.new(:remote, :url => 'http://localhost:') NOT the url of the system under test .. So point it to whatever URL the chrome driver has started up and is listening on

Re: [wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Ashok Tulachan
Thanks you very much again for your reply Jari. What i was saying was that when i ran from the SCITE program, it shuts down automatically after completion of the script but when i run from the irb, it stops where i ran the last command since it does line by line. Now back to the chrome problem, Wh

Re: [wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Jari Bakken
On Tue, May 17, 2011 at 6:00 PM, Ashok Tulachan wrote: > The weird thing is that it shuts down even after completion while it stays > in the same page for IE. However when i copy the same code and run in IRB, > it doesn't shut down. It's not weird at all, it's intentional behaviour on our side si

Re: [wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Ashok Tulachan
Thank you very much Jari for your prompt reply. The weird thing is that it shuts down even after completion while it stays in the same page for IE. However when i copy the same code and run in IRB, it doesn't shut down. Any idea on that?? Thanks, *Ashok * On Tue, May 17, 2011 at 10:50 AM, Ja

Re: [wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Jari Bakken
This is a side effect the Chrome driver architecture that will be addressed in a future release. Den 17. mai 2011 kl. 16:20 skrev Ashok Tulachan : Hi Everyone, I just started using Watir for automation. So far it has not been that bad.However, my application only works on Chrome. So i have start

[wtr-general] Watir for Chrome(Shut down issue)

2011-05-17 Thread Ashok Tulachan
Hi Everyone, I just started using Watir for automation. So far it has not been that bad.However, my application only works on Chrome. So i have started using Watir for Chrome. It's been working fine except it shuts down as soon as it finds an error unlike in IE. Can anyone find a solution for that

[wtr-general] Watir with Telerik Rad combo box inside telerik rad window

2011-05-07 Thread ranjith kumar
Hi team, I have a issue : I have to select a value from telerik comobo box , and the rad combo box is inside the rad window. I am unable to provide the exact application. Instead I am able to provide the application links for Rad window and rad combo box separately. For rad window: http://demo

Re: [wtr-general] watir-webdriver works with Firefox but not with Chrome :Failed to initialize session (Selenium::WebDriver::Error::WebDriverError)

2011-05-06 Thread Jari Bakken
As mentioned on the server download page, you need a newer version of Chrome, minimum version 12.0.727.0. Den 6. mai 2011 kl. 17:47 skrev emclaus : > I'm trying to use Watir and Chrome (Chromium version 10.0.648.205 on > Ubuntu) together. I think I have watir-webdriver installed correctly > beca

[wtr-general] watir-webdriver works with Firefox but not with Chrome :Failed to initialize session (Selenium::WebDriver::Error::WebDriverError)

2011-05-06 Thread emclaus
I'm trying to use Watir and Chrome (Chromium version 10.0.648.205 on Ubuntu) together. I think I have watir-webdriver installed correctly because I can get a firefox window to open without any problems. Could it have something to do with using Chromium instead of Chrome? In the changes file in the

[wtr-general] Watir Podcast #44: Tim Koopmans on WatirGrid and Gridinit

2011-05-04 Thread Željko Filipin
Enjoy! :) http://watirpodcast.com/44-tim-koopmans-on-watirgrid-and-gridinit/ By the way, if you would like if I played music _you_ have created on the podcast, let me know. Željko -- watir.com - community manager watir.com/book - author watirpodcast.com - host viaqa.mobi conference on software t

Re: [wtr-general] Watir with Telerik Rad Grid

2011-05-02 Thread ranjith kumar
Hi, Can you please tell me which code are you reffering to. The code of the applciation where i am working with Rad grids. On Mon, May 2, 2011 at 12:10 PM, Angrez Singh wrote: > > We are new to teleric Radgrid. We need sample code. Please help us. >> >> :) nice one Željko. > Ranjith we all wan

Re: [wtr-general] Watir with Telerik Rad Grid

2011-05-01 Thread Angrez Singh
> We are new to teleric Radgrid. We need sample code. Please help us. > > :) nice one Željko. Ranjith we all want to help you. But without code we can't do anything. One thing that you can do is to go through Watir sample codes available at Watir.com If you are using IE 7/8 you can use IE developer

Re: [wtr-general] Watir with Telerik Rad Grid

2011-04-30 Thread Željko Filipin
On Sat, Apr 30, 2011 at 4:13 PM, ranjith kumar wrote: > I am new to watir... > I need a sample script especially to work with teleric Radgrid. > I am facing the problem in clicking the row in the grid. > Please help We are new to teleric Radgrid. We need sample code. Please help us. Željko --

Re: [wtr-general] Watir with Telerik Rad Grid

2011-04-30 Thread ranjith kumar
Hi, I am new to watir... I need a sample script especially to work with teleric Radgrid. I am facing the problem in clicking the row in the grid. Please help On Sat, Apr 30, 2011 at 4:50 PM, Željko Filipin < zeljko.fili...@wa-research.ch> wrote: > On Sat, Apr 30, 2011 at 5:35 AM, ranjith kumar

Re: [wtr-general] Watir with Telerik Rad Grid

2011-04-30 Thread Tim Koopmans
Please supply some examples of: 1. The html you are working with (or even a URL so we can all see it) 2. The watir code you are trying to execute 3. ruby version / watir version / operating system and browser version ... On Sat, Apr 30, 2011 at 1:35 PM, ranjith kumar wrote: > Hello, > > I am w

Re: [wtr-general] Watir with Telerik Rad Grid

2011-04-30 Thread Željko Filipin
On Sat, Apr 30, 2011 at 5:35 AM, ranjith kumar wrote: > I have select any rown in the grid window using watir. 1) What is the problem? 2) Show us the code! Željko -- watir.com - community manager watir.com/book - author watirpodcast.com - host viaqa.mobi conference on software testing - organiz

[wtr-general] Watir with Telerik Rad Grid

2011-04-30 Thread ranjith kumar
Hello, I am working with teleric rad grid control. I have select any rown in the grid window using watir. COuld you please help me in resolving this, Thanks in advance Regards, Ranjith -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-ge

Re: [wtr-general] Watir 1.6.5 tests on IE8 - very slow execution

2011-04-21 Thread Željko Filipin
On Thu, Apr 21, 2011 at 9:24 AM, psdd wrote: > Watir version : 1.6.5 Why are you using an old version of Watir? Željko -- watir.com - community manager watir.com/book - author watirpodcast.com - host viaqa.mobi conference on software testing - organizer -- Before posting, please read http://wa

[wtr-general] Watir 1.6.5 tests on IE8 - very slow execution

2011-04-21 Thread psdd
Hi, Environment: Windows 2008 R2 server, (default 64 bit) Browser: IE8 (cannot downgrade since it is windows 2008 server) Watir version : 1.6.5 Ruby version : 1.8.7 When watir tests are run, it is extremely slow and takes around 10-20 mins to complete a simple test which otherwise in IE7, windows

Re: [wtr-general] Watir simple field recorder

2011-04-20 Thread Željko Filipin
On Fri, Apr 1, 2011 at 7:26 PM, Babitha wrote: > I could share this script if anybody was interested. But, I am not > sure where I can upload it. You will find that Watir community does not like recorders. You can upload it on your site, github, or you can take over watir recorder project at open

[wtr-general] Watir 1.8.1 Released

2011-04-10 Thread Jarmo
Hello, everyone! Just released Watir 1.8.1! Changelog is following: === IE improvements * Added #frames method (Ivan Kabluchkov). * Added Frame#exists?, #src, #name and other Element methods (Ivan Kabluchkov). * Added multiple locators support for #frame method (Ivan Kabluchkov). * Added *_no_w

[wtr-general] Watir 1.8.1.rc1 Released

2011-04-07 Thread Jarmo
Hello, everyone! Right after SeConf that i unfortunately had to miss, i pushed out the Watir 1.8.1.rc1. Changelog is following: === IE improvements * Added #frames method (Ivan Kabluchkov). * Added Frame#exists?, #src, #name and other Element methods (Ivan Kabluchkov). * Added multiple locators

[wtr-general] Watir trying to open IE8

2011-04-02 Thread Sirisha Pusapati
Hi, We are using watir in our automation framework to run ruby tests. The application to run the ruby tests is running as a service. We have no problem when trying to open IE7 using watir. But when we are using to watir to open 2 IE8 concurrently using different user account we are seeing errors.

[wtr-general] Watir simple field recorder

2011-04-01 Thread Babitha
A long time back, Scott Hanselman of microsoft had posted a ruby watir recorder in his blog. Like most other recorders, this had the problem that the code generated couldn't be reused. I made some small tweaking to this code so that when a user traverses through the page, clicking on each element

[wtr-general] Watir simple field recorder

2011-04-01 Thread Babitha
There was a ruby watir recorder written by Scott Hanselman(of Microsoft of course) a long time back. It was a full fledged recorder and like other recorders had the issue that the code generated couldn't be reusable. I made some small modifications to this so that it identifies the element IDs and

[wtr-general] Watir webdriver image download fail on Mac

2011-03-28 Thread Petr Vanuev
Hi I'm trying to download image ff = Watir::Browser.new :firefox ff.goto(url) x = ff.image(:id,'logo') x.save('/Users/.../1.gif') but nothing is done. How to store images using watir-webdriver ? -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice.

Re: [wtr-general] Watir Book

2011-03-15 Thread Shiv
Congrats...its a great initiative good luck, shiv On Tue, Mar 15, 2011 at 5:42 AM, Željko Filipin wrote: > Hi, > > I have started writing a book on Watir. My family has agreed that I can work > on the book for about 8 hours almost every Saturday. > > The source (markdown) will always be free at

Re: [wtr-general] Watir Book

2011-03-15 Thread Željko Filipin
On Tue, Mar 15, 2011 at 1:18 AM, Tim Koopmans wrote: > Just bought a copy! Well done Željko for taking the initiative. I look forward to the end result =) Thanks Tim. :) Version 0.1.2 is live: https://github.com/zeljkofilipin/watirbook/downloads I have learned how to start a new chapter on a n

Re: [wtr-general] Watir Book

2011-03-14 Thread Tim Koopmans
Just bought a copy! Well done Željko for taking the initiative. I look forward to the end result =) Cheers, Tim @90kts On Tue, Mar 15, 2011 at 11:12 AM, Željko Filipin < zeljko.fili...@wa-research.ch> wrote: > Hi, > > I have started writing a book on Watir. My family has agreed that I can > w

[wtr-general] Watir Book

2011-03-14 Thread Željko Filipin
Hi, I have started writing a book on Watir. My family has agreed that I can work on the book for about 8 hours almost every Saturday. The source (markdown) will always be free at Github[1] and I plan to sell the pdf for $9. I know I will not get rich by writing a book on Watir, but some money wou

Re: [wtr-general] Watir Day 2011 Speakers Announced

2011-03-09 Thread Charley Baker
That looks great, now time to tweet and promote. -Charley On Mon, Mar 7, 2011 at 11:33 PM, Tim Koopmans wrote: > Looks fine to me Alister. > > Cheers, > Tim > > @90kts > > > > > On Tue, Mar 8, 2011 at 3:56 PM, Alister Scott wrote: > >> The speakers have been announced for Watir Day: >>http:

Re: [wtr-general] Watir Day 2011 Speakers Announced

2011-03-07 Thread Tim Koopmans
Looks fine to me Alister. Cheers, Tim @90kts On Tue, Mar 8, 2011 at 3:56 PM, Alister Scott wrote: > The speakers have been announced for Watir Day: >http://watir.com/2011/03/08/watir-day-2011-speakers-announced/ >http://watir.com/watir-day/speakers/ > > Cheers, > > Alister Scott > Bri

[wtr-general] Watir Day 2011 Speakers Announced

2011-03-07 Thread Alister Scott
The speakers have been announced for Watir Day: http://watir.com/2011/03/08/watir-day-2011-speakers-announced/ http://watir.com/watir-day/speakers/ Cheers, Alister Scott Brisbane, Australia Watir Web Master: http://watir.com Blog: http://watirmelon.com LinkedIn: http://www.linkedin.com/in/a

Re: [wtr-general] Watir day and Selenium Conf

2011-03-03 Thread Željko Filipin
Win a ticket to the Selenium Conference http://blog.softwaretestingclub.com/2011/03/win-a-ticket-to-the-selenium-conference/ Željko -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/

Re: [wtr-general] watir-webdriver: undefined method `status_code' for # (NoMethodError)

2011-03-02 Thread Željko Filipin
On Wed, Mar 2, 2011 at 12:42 PM, Andrew Gallo wrote: > D:/rubyapps/test-watir-weddriver/test-page.rb:14: undefined method > `status_code' for # (NoMethodError) Looks like status_code method is not defined in Browser. Željko -- watir.com - community manager watirpodcast.com - host testingpodcast.

[wtr-general] watir-webdriver: undefined method `status_code' for # (NoMethodError)

2011-03-02 Thread Andrew Gallo
Hi All, I'm having an issue with the following script not returning the status_code of the current response page. I'm probably not applying the correct method for the browser object. Any help would be most appreciated. Regards, Andrew G. require 'rubygems' require 'watir-webdriver' browser = Wati

[wtr-general] Watir 1.8.0 final is out!

2011-02-28 Thread Charley Baker
Hello all, I've pushed the 1.8.0 final gems for watir and firewatir into the pipeline. Feel free to test it out and submit any challenges you might have. The biggest change for this release is dropping the ActiveSupport library for Firefox: more notes on that are at the bottom of this mail.

[wtr-general] Watir at Facebook

2011-02-22 Thread Željko Filipin
I have created Watir Facebook page: https://www.facebook.com/pages/Watir/155249291152060 Feel free to "like" it. :) I did not find a way how to create simple URL like https://www.facebook.com/pages/Watir or even https://www.facebook.com/Watir, if somebody knows how to do it, please let me know.

Re: [wtr-general] [Watir launching] Unable to launch Watir by require 'watir'

2011-02-18 Thread Bill Agee
Yes, thanks Tim! This should improve first impressions of Watir a lot for Ruby 1.8.x folks. :) Bill On Fri, Feb 18, 2011 at 12:51 AM, Željko Filipin < zeljko.fili...@wa-research.ch> wrote: > On Fri, Feb 18, 2011 at 5:57 AM, Tim Koopmans wrote: > > Good idea, I've since updated this page to re

Re: [wtr-general] [Watir launching] Unable to launch Watir by require 'watir'

2011-02-18 Thread Željko Filipin
On Fri, Feb 18, 2011 at 5:57 AM, Tim Koopmans wrote: > Good idea, I've since updated this page to reflect. Thanks. :) Željko -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/watir-

Re: [wtr-general] [Watir launching] Unable to launch Watir by require 'watir'

2011-02-17 Thread Tim Koopmans
Good idea, I've since updated this page to reflect. Loading RubyGems If you’re a first time Ruby user, you need to understand how to load Ruby gems such as Watir. You can require it via the -rubygems command line option or by using the RUBYOPT environment variable. You can also require it manuall

Re: [wtr-general] [Watir launching] Unable to launch Watir by require 'watir'

2011-02-17 Thread Bill Agee
I think it's time to start updating Watir documentation with a " require 'rubygems' " step (or at least a note warning about the issue). A lot of folks installing Ruby on Windows for the first time are winding up without the RUBYOPT env var, and thus have a rockier first experience than those of u

Re: [wtr-general] [Watir launching] Unable to launch Watir by require 'watir'

2011-02-17 Thread Tim Koopmans
Try require 'rubygems' Before your require for Watir... Or set your RUBYOPT environment variable ... Regards, Tim On 18/02/2011, at 8:06 AM, mmauric wrote: > As explained in the getting started, I have installed ruby-1.8.7-p330 > with the option to update the path variable on Windows 7 p

[wtr-general] [Watir launching] Unable to launch Watir by require 'watir'

2011-02-17 Thread mmauric
As explained in the getting started, I have installed ruby-1.8.7-p330 with the option to update the path variable on Windows 7 pro and performed: gem update --system gem install watir -> watir-1.7.1 is installed (all seems right) Then I try to launch Watir and here is below the error message I g

Re: [wtr-general] Watir & Peoplesoft - form that reloads page after each field

2011-02-14 Thread John Fitisoff
ext fields (think I was overriding the existing set method). But you could probably do some more sophisticated polling if you had to. - Original Message From: Adam Reed To: Watir General Sent: Mon, February 14, 2011 7:19:06 AM Subject: [wtr-general] Watir & Peoplesoft - form tha

[wtr-general] Watir & Peoplesoft - form that reloads page after each field

2011-02-14 Thread Adam Reed
I posted this on Stackoverflow but haven't had much luck with responses. I'm writing some regression tests for a (new to me) PeopleSoft application. Basically, all of the forms in the app trigger a JS refresh/reload when the user clicks outside of the field after entering text. If I complete the

[wtr-general] Watir day and Selenium Conf

2011-02-03 Thread Charley Baker
Hi all, Bret and I are leading up a Watir Day which will be Sunday April 3rd in San Francisco as part of the Selenium Conference. You can find out more information here on Watir day: http://watir.com/watir-day/ and the Selenium Conference: http://www.seleniumconf.com/. We're excited to have

Re: [wtr-general] Watir + SQLite

2011-02-02 Thread Željko Filipin
On Wed, Feb 2, 2011 at 9:45 AM, Betsy wrote: > I have not been able to install the sqlite gem properly. That would be a question for sqlite support list then. Željko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them --

[wtr-general] Watir + SQLite

2011-02-02 Thread Betsy
Hi all, I need to fetch data from an sqlite db for my watir scripts.. But somehow I have not been able to install the sqlite gem properly. Any help would be greatly appreciated.. Regards.. -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. wati

Re: [wtr-general] Watir with JRuby

2011-01-27 Thread Željko Filipin
On Thu, Jan 27, 2011 at 3:12 PM, Chandu80 wrote: > JRuby support watir installation? As far as I know, only operawatir and celerity run on jruby. Other drivers require cruby/mri. More information: http://watir.com/installation/ http://celerity.rubyforge.org/ http://operawatir.org/ Željko -- wa

[wtr-general] Watir with JRuby

2011-01-27 Thread Chandu80
Hello All, I have JRuby installed on my system.I want to install watir gem.Does JRuby support watir installation? If yes what is the exact procedure to do so? Regards Chandrika -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@goo

Re: [wtr-general] Watir Installation

2011-01-27 Thread Željko Filipin
On Thu, Jan 27, 2011 at 8:14 AM, Chandu80 wrote: > C:/jruby-1.5.0/bin/jruby.exe extconf.rb > WARNING: JRuby does not support native extensions or the `mkmf' > library. I do not think Watir works with JRuby[1]. You will have to install it in CRuby/MRI[2]. [1] http://www.jruby.org/ [2] http://en.w

Re: [wtr-general] Watir Installation

2011-01-26 Thread karim rayani
Seems the question is about porting the Watir library on JRuby. https://github.com/operasoftware/operawatir above is an example for Opera browser with JRuby. On Thu, Jan 27, 2011 at 12:44 PM, Chandu80 wrote: > Hello All, > > A short query on watir i

[wtr-general] Watir Installation

2011-01-26 Thread Chandu80
Hello All, A short query on watir instllation. I have jruby,rails and ruby installed on my machine.I now want to install watir for testing purpose.However when I do a gem install watir I get an error as follows ERROR: http://rubygems.org/ does not appear to be a repository Building native extens

Re: [wtr-general] Watir virtual appliances?

2011-01-13 Thread Željko Filipin
On Thu, Jan 13, 2011 at 3:59 PM, Emmanuel Cecchet wrote: > I will keep you posted with my progress on this front. Please do. This sounds like a good topic for a podcast[1]. :) Željko -- [1] http://watirpodcast.com/ -- Before posting, please read http://watir.com/support. In short: search bef

Re: [wtr-general] Watir virtual appliances?

2011-01-13 Thread Emmanuel Cecchet
On 1/13/2011 3:51 AM, Željko Filipin wrote: > The Windows VM can be made available as Amazon EC2 AMIs for those who are willing to run their VMs in the cloud. Can they be shared? Yes. We can make these AMIs public for anyone to use. Basically the license price is included in the hourly rental

Re: [wtr-general] Watir virtual appliances?

2011-01-13 Thread Željko Filipin
On Wed, Jan 12, 2011 at 4:58 PM, Emmanuel Cecchet wrote: > I'll make VMs available for Linux. Great. > The Windows VM can be made available as Amazon EC2 AMIs for those who are willing to run their VMs in the cloud. Can they be shared? Željko -- Before posting, please read http://watir.com/s

[wtr-general] Watir 1.7.1 issue

2011-01-12 Thread Reciprocity
Hello, I'm testing on Win7 (IE8), Ruby 1.8.6 (also tested under 1.8.7) and Watir 1.7.1 Below irb session works fine under all the same environment except Watir 1.6.2 I have a page that pops up a new window. I can attach to it without an error but it just isn't right. irb(main):001:0> require 'wa

Re: [wtr-general] Watir virtual appliances?

2011-01-12 Thread Emmanuel Cecchet
Hi Željko, I'll make VMs available for Linux. The Windows VM can be made available as Amazon EC2 AMIs for those who are willing to run their VMs in the cloud. Emmanuel On 1/11/2011 10:14 AM, Željko Filipin wrote: On Tue, Jan 11, 2011 at 4:06 PM, Emmanuel Cecchet > wr

Re: [wtr-general] Watir virtual appliances?

2011-01-11 Thread Željko Filipin
On Tue, Jan 11, 2011 at 4:06 PM, Emmanuel Cecchet wrote: > Does anyone know if there are virtual machines available (Xen, VMWare, AMI, ...) with Watir and version of browsers that are known to work fine together? No as far as I know. > If not, is there any plan for the dev team to build such VMs

[wtr-general] Watir virtual appliances?

2011-01-11 Thread Emmanuel Cecchet
Hi all, Does anyone know if there are virtual machines available (Xen, VMWare, AMI, ...) with Watir and version of browsers that are known to work fine together? If not, is there any plan for the dev team to build such VMs (that could be used for testing) and make them available? I think it wo

Re: [wtr-general] watir-webdriver with IE and Chrome

2011-01-11 Thread Emmanuel Cecchet
Ok. Done. Thanks On 1/11/2011 9:22 AM, Željko Filipin wrote: Looks like you should report a few bugs: https://github.com/jarib/watir-webdriver/issues Željko -- watir.com - community manager watirpodcast.com - host testingpodcast.com

Re: [wtr-general] watir-webdriver with IE and Chrome

2011-01-11 Thread Željko Filipin
Looks like you should report a few bugs: https://github.com/jarib/watir-webdriver/issues Željko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them -- Before posting, please read http://watir.com/support. In short: search

[wtr-general] watir-webdriver with IE and Chrome

2011-01-11 Thread Emmanuel Cecchet
Hi all, I am using watir-webdriver and have a simple script that fills forms and click on buttons. Everything works fine with Firefox (Linux or Windows). 1. I have problems with IE (v8.0.6001.18702) on Windows XP where everything works except clicking buttons. The method does not fail, I can

<    2   3   4   5   6   7   8   9   10   11   >