From bret at pettichord.com Sun Sep 9 18:43:19 2012 From: bret at pettichord.com (Bret Pettichord) Date: Sun, 9 Sep 2012 13:43:19 -0500 Subject: [Wtr-development] Fwd: Watir named Finalist In ATI Automation Honors In-Reply-To: <87b17ad57d87926be7cb4503711f349f@automatedtestinginstitute.com> References: <87b17ad57d87926be7cb4503711f349f@automatedtestinginstitute.com> Message-ID: ---------- Forwarded message ---------- From: Dion Johnson Date: Sun, Sep 9, 2012 at 9:51 AM Subject: Watir named Finalist In ATI Automation Honors To: abaird at bairdsnet.net, bret at pettichord.com, alister.scott at gmail.com ** Hello! I'm writing to let you know that Watir has been named a finalist in the 4th Annual ATI Automation Honors. The ATI Automation Honors is the industry's original set of awards dedicated to software test automation and it recognizes tools, resources and practitioners that demonstrate excellence. We encourage you to share this information with your community and ask them to show support for you by coming to the ATI Online reference ( http://www.atihonors.automatedtestinginstitute.com) and voting for you. Voting will take place from now through October 7. We'd love to have you guys represented at the TestKIT 2012 Conference where the award winners will be announced during a live ceremony that will also be recorded and shared with our online community. We're willing to offer a representative of your organization complimentary attendance to the spectacular 3-day event held in Linthicum, MD from Oct 15 through the 17. For more information on the conference visit http://www.testkitconference.com. Please respond to this email indicating whether or not any of your representatives will be able to attend. Thanks and congratulations! *Dion Johnson* Automated Testing Institute *"The KIT is Koming"* www.testkitconference.com -- Bret Pettichord Director, Watir Project www.watir.com QA Manager, Blackbaud www.convio.com/careers Twitter @bpettichord -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: atiHonorsFinalistBadge_20122013_150.png Type: image/png Size: 30245 bytes Desc: not available URL: From jarmo.p at gmail.com Mon Sep 17 20:34:56 2012 From: jarmo.p at gmail.com (Jarmo) Date: Mon, 17 Sep 2012 23:34:56 +0300 Subject: [Wtr-development] Watir 4.0.0.rc1 Released! Message-ID: Hello everyone! I'm happy to announce that Watir 4.0.rc1 has been released. Please install it with: gem install watir --pre Refer to the usage at the readme: https://github.com/watir/watir/blob/master/README.md All questions, comments or suggestions are welcome. PS! This gem detects automatically which driver to use (webdriver or classic), but still has a limitation of using one driver per Ruby process. I'm not even sure if using webdriver and classic in the same Ruby process will be possible in the future due to namespace collisions. With Best Regards, Jarmo Pertman -------------- next part -------------- An HTML attachment was scrubbed... URL: From alister.scott at gmail.com Tue Sep 18 01:37:26 2012 From: alister.scott at gmail.com (Alister Scott) Date: Tue, 18 Sep 2012 11:37:26 +1000 Subject: [Wtr-development] Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: Fantastic work Jarmo! This will be big time when we have one command that works across all platforms. I tried it on OSX and the gem installs correctly, but when I try to launch a new browser without specifying a browser it complains (when it should default to firefox according to your README). Using :firefox works fine. (I am using watir-webdriver 0.6.1). Als-MacBook-Air:minesweeper-robot alisterscott$ irb > 1.9.3p194 :001 > require 'watir' > => true > 1.9.3p194 :002 > b = Watir::Browser.new > ArgumentError: expected Symbol or Selenium::WebDriver::Driver, got NilClass > from /Users/alisterscott/.rvm/gems/ruby-1.9.3-p194 at minesweeper-robot/gems/watir-webdriver-0.6.1/lib/watir-webdriver/browser.rb:39:in > `initialize' > from /Users/alisterscott/.rvm/gems/ruby-1.9.3-p194 at minesweeper-robot/gems/watir-4.0.0.rc1/lib/watir/loader.rb:16:in > `new' > from /Users/alisterscott/.rvm/gems/ruby-1.9.3-p194 at minesweeper-robot/gems/watir-4.0.0.rc1/lib/watir/loader.rb:16:in > `new' > from (irb):2 > from /Users/alisterscott/.rvm/rubies/ruby-1.9.3-p194/bin/irb:16:in > `
' > 1.9.3p194 :003 > b = Watir::Browser.new :firefox > => # > 1.9.3p194 :004 > quit > > Thanks for this great work. Cheers, Alister Alister Scott Brisbane, Australia Blog: http://watirmelon.com LinkedIn: http://www.linkedin.com/in/alisterscott ?Debt, no matter how creatively structured, is anathema to peace of mind.? ~ Ryan Freitas On Tue, Sep 18, 2012 at 6:34 AM, Jarmo wrote: > Hello everyone! > > I'm happy to announce that Watir 4.0.rc1 has been released. > > Please install it with: > gem install watir --pre > > Refer to the usage at the readme: > https://github.com/watir/watir/blob/master/README.md > > All questions, comments or suggestions are welcome. > > PS! This gem detects automatically which driver to use (webdriver or > classic), but still has a limitation of using one driver per Ruby process. > I'm not even sure if using webdriver and classic in the same Ruby process > will be possible in the future due to namespace collisions. > > With Best Regards, > Jarmo Pertman > > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Tue Sep 18 07:36:47 2012 From: jarmo.p at gmail.com (Jarmo) Date: Tue, 18 Sep 2012 10:36:47 +0300 Subject: [Wtr-development] Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: Thanks for your quick feedback! gem install watir --pre and try again with rc2. Jarmo On Tue, Sep 18, 2012 at 4:37 AM, Alister Scott wrote: > Fantastic work Jarmo! > > This will be big time when we have one command that works across all > platforms. > > I tried it on OSX and the gem installs correctly, but when I try to launch > a new browser without specifying a browser it complains (when it should > default to firefox according to your README). Using :firefox works fine. (I > am using watir-webdriver 0.6.1). > > > Als-MacBook-Air:minesweeper-robot alisterscott$ irb >> 1.9.3p194 :001 > require 'watir' >> => true >> 1.9.3p194 :002 > b = Watir::Browser.new >> ArgumentError: expected Symbol or Selenium::WebDriver::Driver, got >> NilClass >> from /Users/alisterscott/.rvm/gems/ruby-1.9.3-p194 at minesweeper-robot/gems/watir-webdriver-0.6.1/lib/watir-webdriver/browser.rb:39:in >> `initialize' >> from /Users/alisterscott/.rvm/gems/ruby-1.9.3-p194 at minesweeper-robot/gems/watir-4.0.0.rc1/lib/watir/loader.rb:16:in >> `new' >> from /Users/alisterscott/.rvm/gems/ruby-1.9.3-p194 at minesweeper-robot/gems/watir-4.0.0.rc1/lib/watir/loader.rb:16:in >> `new' >> from (irb):2 >> from /Users/alisterscott/.rvm/rubies/ruby-1.9.3-p194/bin/irb:16:in >> `
' >> 1.9.3p194 :003 > b = Watir::Browser.new :firefox >> => # >> 1.9.3p194 :004 > quit >> >> > Thanks for this great work. > > Cheers, > Alister > > Alister Scott > Brisbane, Australia > Blog: http://watirmelon.com > LinkedIn: http://www.linkedin.com/in/alisterscott > > ?Debt, no matter how creatively structured, is anathema to peace of mind.? > > ~ Ryan Freitas > > On Tue, Sep 18, 2012 at 6:34 AM, Jarmo wrote: > >> Hello everyone! >> >> I'm happy to announce that Watir 4.0.rc1 has been released. >> >> Please install it with: >> gem install watir --pre >> >> Refer to the usage at the readme: >> https://github.com/watir/watir/blob/master/README.md >> >> All questions, comments or suggestions are welcome. >> >> PS! This gem detects automatically which driver to use (webdriver or >> classic), but still has a limitation of using one driver per Ruby process. >> I'm not even sure if using webdriver and classic in the same Ruby process >> will be possible in the future due to namespace collisions. >> >> With Best Regards, >> Jarmo Pertman >> >> >> _______________________________________________ >> Wtr-development mailing list >> Wtr-development at rubyforge.org >> http://rubyforge.org/mailman/listinfo/wtr-development >> > > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko at filipin.eu Tue Sep 18 11:04:59 2012 From: zeljko at filipin.eu (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 18 Sep 2012 13:04:59 +0200 Subject: [Wtr-development] [wtr-general] Re: Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: On Tue, Sep 18, 2012 at 9:36 AM, Jarmo wrote: > Thanks for your quick feedback! > gem install watir --pre > and try again with rc2. This is what I got on a Mac machine: $ gem install watir --pre ERROR: While executing gem ... (Gem::DependencyError) Unable to resolve dependencies: watir requires commonwatir (= 4.0.0.rc2) ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Tue Sep 18 11:35:55 2012 From: jarmo.p at gmail.com (Jarmo) Date: Tue, 18 Sep 2012 14:35:55 +0300 Subject: [Wtr-development] [wtr-general] Re: Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: Oh crap, totally forgout about commonwatir dependency. As i understand from Hugh's work then we can't lose commonwatir since it is needed due to the nature of Rubygems. I'm afraid there's not much code we can reuse between classic and webdriver so i'd happily remove commonwatir. Anyway, i've set Watir's dependency for commonwatir to be a little more looser. Please give it one more try: gem install watir --pre Jarmo On Tue, Sep 18, 2012 at 2:04 PM, ?eljko Filipin wrote: > On Tue, Sep 18, 2012 at 9:36 AM, Jarmo wrote: > > Thanks for your quick feedback! > > gem install watir --pre > > and try again with rc2. > > This is what I got on a Mac machine: > > $ gem install watir --pre > ERROR: While executing gem ... (Gem::DependencyError) > Unable to resolve dependencies: watir requires commonwatir (= > 4.0.0.rc2) > > ?eljko > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko at filipin.eu Tue Sep 18 11:50:32 2012 From: zeljko at filipin.eu (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 18 Sep 2012 13:50:32 +0200 Subject: [Wtr-development] [wtr-general] Re: Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: On Tue, Sep 18, 2012 at 1:35 PM, Jarmo wrote: > As i understand from Hugh's work then we can't lose commonwatir since it is needed due to the nature of Rubygems. We can not delete old dependency? Strange. > Please give it one more try: > gem install watir --pre Thanks, it works fine now: $ gem install watir --pre Fetching: commonwatir-4.0.0.gem (100%) Fetching: watir-4.0.0.rc4.gem (100%) Successfully installed commonwatir-4.0.0 Successfully installed watir-4.0.0.rc4 2 gems installed $ irb > require "watir" => true > browser = Watir::Browser.new => # ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko at filipin.eu Tue Sep 18 11:58:10 2012 From: zeljko at filipin.eu (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 18 Sep 2012 13:58:10 +0200 Subject: [Wtr-development] [wtr-general] Re: Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: Another problem. Created a simple Gemfile: source "http://rubygems.org" gem "watir" And then: $ ruby -v ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin11.4.0] $ gem -v 1.8.24 $ gem list *** LOCAL GEMS *** bundler (1.2.0) rake (0.9.2.2) rubygems-bundler (1.1.0) rvm (1.11.3.5) $ bundle Fetching gem metadata from http://rubygems.org/........ Fetching gem metadata from http://rubygems.org/.. Using rake (0.9.2.2) Installing builder (3.1.3) Installing commonwatir (3.0.0) Installing ffi (1.1.5) with native extensions Installing hoe (3.0.8) Installing subexec (0.0.4) Installing mini_magick (3.2.1) Installing nokogiri (1.5.5) with native extensions Installing rautomation (0.7.2) Installing s4t-utils (1.0.4) Installing xml-simple (1.1.1) Installing user-choices (1.1.6.1) Installing win32-process (0.7.0) Installing win32screenshot (1.0.7) Installing win32-api (1.4.8) with native extensions Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension. /Users/zeljko/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb checking for strncpy_s()... no creating Makefile make compiling win32/api.c win32/api.c:2:21: error: windows.h: No such file or directory win32/api.c:33: error: expected specifier-qualifier-list before ?HANDLE? win32/api.c: In function ?api_free?: win32/api.c:40: error: ?Win32API? has no member named ?library? win32/api.c:41: warning: implicit declaration of function ?FreeLibrary? win32/api.c:41: error: ?Win32API? has no member named ?library? win32/api.c: At top level: win32/api.c:58: error: expected ?)? before ?dwError? win32/api.c: In function ?callback_init?: win32/api.c:189: error: ?LPARAM? undeclared (first use in this function) win32/api.c:189: error: (Each undeclared identifier is reported only once win32/api.c:189: error: for each function it appears in.) win32/api.c:189: error: expected ?)? before ?find_callback? win32/api.c: In function ?api_init?: win32/api.c:236: error: ?HMODULE? undeclared (first use in this function) win32/api.c:236: error: expected ?;? before ?hLibrary? win32/api.c:237: error: ?FARPROC? undeclared (first use in this function) win32/api.c:237: error: expected ?;? before ?fProc? win32/api.c:238: warning: ISO C90 forbids mixed declarations and code win32/api.c:260: warning: format ?%d? expects type ?int?, but argument 3 has type ?long int? win32/api.c:273: error: ?hLibrary? undeclared (first use in this function) win32/api.c:273: warning: implicit declaration of function ?LoadLibrary? win32/api.c:273: warning: implicit declaration of function ?TEXT? win32/api.c:279: warning: implicit declaration of function ?StringError? win32/api.c:279: warning: implicit declaration of function ?GetLastError? win32/api.c:280: warning: format ?%s? expects type ?char *?, but argument 4 has type ?int? win32/api.c:283: error: ?Win32API? has no member named ?library? win32/api.c:290: error: ?fProc? undeclared (first use in this function) win32/api.c:290: warning: implicit declaration of function ?GetProcAddress? win32/api.c:333: error: ?Win32API? has no member named ?function? win32/api.c:341: error: ?Win32API? has no member named ?prototype? win32/api.c:344: error: ?Win32API? has no member named ?prototype? win32/api.c:347: error: ?Win32API? has no member named ?prototype? win32/api.c:350: error: ?Win32API? has no member named ?prototype? win32/api.c:353: error: ?Win32API? has no member named ?prototype? win32/api.c:356: error: ?Win32API? has no member named ?prototype? win32/api.c:370: error: ?Win32API? has no member named ?return_type? win32/api.c:376: error: ?Win32API? has no member named ?return_type? win32/api.c:379: error: ?Win32API? has no member named ?return_type? win32/api.c:382: error: ?Win32API? has no member named ?return_type? win32/api.c:385: error: ?Win32API? has no member named ?return_type? win32/api.c:388: error: ?Win32API? has no member named ?return_type? win32/api.c: In function ?func_init?: win32/api.c:453: warning: format ?%d? expects type ?int?, but argument 3 has type ?long int? win32/api.c:459: error: ?Win32API? has no member named ?function? win32/api.c:459: error: ?FARPROC? undeclared (first use in this function) win32/api.c:459: error: expected ?;? before ?__extension__? win32/api.c:467: error: ?Win32API? has no member named ?prototype? win32/api.c:470: error: ?Win32API? has no member named ?prototype? win32/api.c:473: error: ?Win32API? has no member named ?prototype? win32/api.c:476: error: ?Win32API? has no member named ?prototype? win32/api.c:479: error: ?Win32API? has no member named ?prototype? win32/api.c:482: error: ?Win32API? has no member named ?prototype? win32/api.c:496: error: ?Win32API? has no member named ?return_type? win32/api.c:502: error: ?Win32API? has no member named ?return_type? win32/api.c:505: error: ?Win32API? has no member named ?return_type? win32/api.c:508: error: ?Win32API? has no member named ?return_type? win32/api.c:511: error: ?Win32API? has no member named ?return_type? win32/api.c:514: error: ?Win32API? has no member named ?return_type? win32/api.c: At top level: win32/api.c:531: error: expected specifier-qualifier-list before ?DWORD? win32/api.c:535: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CallbackFunction? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? before ?CALLBACK? win32/api.c:703: error: ?CallbackFunction0_0? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_1? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_2? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_3? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_4? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_5? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_6? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_7? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_8? undeclared here (not in a function) win32/api.c:703: error: ?CallbackFunction0_9? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_0? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_1? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_2? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_3? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_4? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_5? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_6? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_7? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_8? undeclared here (not in a function) win32/api.c:704: error: ?CallbackFunction1_9? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_0? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_1? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_2? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_3? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_4? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_5? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_6? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_7? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_8? undeclared here (not in a function) win32/api.c:705: error: ?CallbackFunction2_9? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_0? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_1? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_2? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_3? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_4? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_5? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_6? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_7? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_8? undeclared here (not in a function) win32/api.c:706: error: ?CallbackFunction3_9? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_0? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_1? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_2? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_3? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_4? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_5? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_6? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_7? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_8? undeclared here (not in a function) win32/api.c:707: error: ?CallbackFunction4_9? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_0? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_1? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_2? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_3? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_4? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_5? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_6? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_7? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_8? undeclared here (not in a function) win32/api.c:708: error: ?CallbackFunction5_9? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_0? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_1? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_2? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_3? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_4? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_5? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_6? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_7? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_8? undeclared here (not in a function) win32/api.c:709: error: ?CallbackFunction6_9? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_0? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_1? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_2? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_3? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_4? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_5? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_6? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_7? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_8? undeclared here (not in a function) win32/api.c:710: error: ?CallbackFunction7_9? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_0? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_1? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_2? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_3? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_4? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_5? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_6? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_7? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_8? undeclared here (not in a function) win32/api.c:711: error: ?CallbackFunction8_9? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_0? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_1? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_2? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_3? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_4? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_5? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_6? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_7? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_8? undeclared here (not in a function) win32/api.c:712: error: ?CallbackFunction9_9? undeclared here (not in a function) win32/api.c: In function ?api_call?: win32/api.c:772: warning: implicit conversion shortens 64-bit value into a 32-bit value win32/api.c:781: error: ?TRUE? undeclared (first use in this function) win32/api.c:783: error: ?FALSE? undeclared (first use in this function) win32/api.c:785: error: ?Win32API? has no member named ?prototype? win32/api.c:805: error: ?LPARAM? undeclared (first use in this function) win32/api.c:805: error: expected ?;? before ?rb_num2ulong? win32/api.c:816: error: ?Win32API? has no member named ?function? win32/api.c:822: error: ?Win32API? has no member named ?return_type? win32/api.c:841: error: ?TCHAR? undeclared (first use in this function) win32/api.c:841: error: expected expression before ?)? token win32/api.c:843: error: too few arguments to function ?rb_str_new? win32/api.c:846: error: expected expression before ?)? token win32/api.c:846: error: expected expression before ?)? token win32/api.c:846: error: expected expression before ?)? token win32/api.c:846: error: expected expression before ?)? token win32/api.c:857: error: expected expression before ?)? token win32/api.c:859: error: too few arguments to function ?rb_str_new? win32/api.c:862: error: expected expression before ?)? token win32/api.c:862: error: expected expression before ?)? token win32/api.c:862: error: expected expression before ?)? token win32/api.c:862: error: expected expression before ?)? token make: *** [api.o] Error 1 Gem files will remain installed in /Users/zeljko/.rvm/gems/ruby-1.9.3-p194 at test/gems/win32-api-1.4.8 for inspection. Results logged to /Users/zeljko/.rvm/gems/ruby-1.9.3-p194 at test /gems/win32-api-1.4.8/ext/gem_make.out An error occurred while installing win32-api (1.4.8), and Bundler cannot continue. Make sure that `gem install win32-api -v '1.4.8'` succeeds before bundling. ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Tue Sep 18 13:57:07 2012 From: jarmo.p at gmail.com (Jarmo) Date: Tue, 18 Sep 2012 16:57:07 +0300 Subject: [Wtr-development] [wtr-general] Re: Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: Add version too, i guess bundler takes last stable version of watir which has watir-classic as it's dependency: gem "watir", "4.0.0.rc4" Jarmo -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Tue Sep 18 13:54:11 2012 From: jarmo.p at gmail.com (Jarmo) Date: Tue, 18 Sep 2012 16:54:11 +0300 Subject: [Wtr-development] [wtr-general] Re: Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: Add version too, i guess bundler takes last stable version of watir which has watir-classic as it's dependency: gem "watir", "4.0.0.rc4" Jarmo On Tue, Sep 18, 2012 at 2:58 PM, ?eljko Filipin wrote: > Another problem. > > > > Created a simple Gemfile: > > source "http://rubygems.org" > gem "watir" > > > > And then: > > > > $ ruby -v > ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin11.4.0] > > $ gem -v > 1.8.24 > > $ gem list > > *** LOCAL GEMS *** > > bundler (1.2.0) > rake (0.9.2.2) > rubygems-bundler (1.1.0) > rvm (1.11.3.5) > > $ bundle > Fetching gem metadata from http://rubygems.org/........ > Fetching gem metadata from http://rubygems.org/.. > Using rake (0.9.2.2) > Installing builder (3.1.3) > Installing commonwatir (3.0.0) > Installing ffi (1.1.5) with native extensions > Installing hoe (3.0.8) > Installing subexec (0.0.4) > Installing mini_magick (3.2.1) > Installing nokogiri (1.5.5) with native extensions > Installing rautomation (0.7.2) > Installing s4t-utils (1.0.4) > Installing xml-simple (1.1.1) > Installing user-choices (1.1.6.1) > Installing win32-process (0.7.0) > Installing win32screenshot (1.0.7) > Installing win32-api (1.4.8) with native extensions > Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native > extension. > > /Users/zeljko/.rvm/rubies/ruby-1.9.3-p194/bin/ruby extconf.rb > checking for strncpy_s()... no > creating Makefile > > make > compiling win32/api.c > win32/api.c:2:21: error: windows.h: No such file or directory > win32/api.c:33: error: expected specifier-qualifier-list before ?HANDLE? > win32/api.c: In function ?api_free?: > win32/api.c:40: error: ?Win32API? has no member named ?library? > win32/api.c:41: warning: implicit declaration of function ?FreeLibrary? > win32/api.c:41: error: ?Win32API? has no member named ?library? > win32/api.c: At top level: > win32/api.c:58: error: expected ?)? before ?dwError? > win32/api.c: In function ?callback_init?: > win32/api.c:189: error: ?LPARAM? undeclared (first use in this function) > win32/api.c:189: error: (Each undeclared identifier is reported only once > win32/api.c:189: error: for each function it appears in.) > win32/api.c:189: error: expected ?)? before ?find_callback? > win32/api.c: In function ?api_init?: > win32/api.c:236: error: ?HMODULE? undeclared (first use in this function) > win32/api.c:236: error: expected ?;? before ?hLibrary? > win32/api.c:237: error: ?FARPROC? undeclared (first use in this function) > win32/api.c:237: error: expected ?;? before ?fProc? > win32/api.c:238: warning: ISO C90 forbids mixed declarations and code > win32/api.c:260: warning: format ?%d? expects type ?int?, but argument 3 > has type ?long int? > win32/api.c:273: error: ?hLibrary? undeclared (first use in this function) > win32/api.c:273: warning: implicit declaration of function ?LoadLibrary? > win32/api.c:273: warning: implicit declaration of function ?TEXT? > win32/api.c:279: warning: implicit declaration of function ?StringError? > win32/api.c:279: warning: implicit declaration of function ?GetLastError? > win32/api.c:280: warning: format ?%s? expects type ?char *?, but argument > 4 has type ?int? > win32/api.c:283: error: ?Win32API? has no member named ?library? > win32/api.c:290: error: ?fProc? undeclared (first use in this function) > win32/api.c:290: warning: implicit declaration of function ?GetProcAddress? > win32/api.c:333: error: ?Win32API? has no member named ?function? > win32/api.c:341: error: ?Win32API? has no member named ?prototype? > win32/api.c:344: error: ?Win32API? has no member named ?prototype? > win32/api.c:347: error: ?Win32API? has no member named ?prototype? > win32/api.c:350: error: ?Win32API? has no member named ?prototype? > win32/api.c:353: error: ?Win32API? has no member named ?prototype? > win32/api.c:356: error: ?Win32API? has no member named ?prototype? > win32/api.c:370: error: ?Win32API? has no member named ?return_type? > win32/api.c:376: error: ?Win32API? has no member named ?return_type? > win32/api.c:379: error: ?Win32API? has no member named ?return_type? > win32/api.c:382: error: ?Win32API? has no member named ?return_type? > win32/api.c:385: error: ?Win32API? has no member named ?return_type? > win32/api.c:388: error: ?Win32API? has no member named ?return_type? > win32/api.c: In function ?func_init?: > win32/api.c:453: warning: format ?%d? expects type ?int?, but argument 3 > has type ?long int? > win32/api.c:459: error: ?Win32API? has no member named ?function? > win32/api.c:459: error: ?FARPROC? undeclared (first use in this function) > win32/api.c:459: error: expected ?;? before ?__extension__? > win32/api.c:467: error: ?Win32API? has no member named ?prototype? > win32/api.c:470: error: ?Win32API? has no member named ?prototype? > win32/api.c:473: error: ?Win32API? has no member named ?prototype? > win32/api.c:476: error: ?Win32API? has no member named ?prototype? > win32/api.c:479: error: ?Win32API? has no member named ?prototype? > win32/api.c:482: error: ?Win32API? has no member named ?prototype? > win32/api.c:496: error: ?Win32API? has no member named ?return_type? > win32/api.c:502: error: ?Win32API? has no member named ?return_type? > win32/api.c:505: error: ?Win32API? has no member named ?return_type? > win32/api.c:508: error: ?Win32API? has no member named ?return_type? > win32/api.c:511: error: ?Win32API? has no member named ?return_type? > win32/api.c:514: error: ?Win32API? has no member named ?return_type? > win32/api.c: At top level: > win32/api.c:531: error: expected specifier-qualifier-list before ?DWORD? > win32/api.c:535: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CallbackFunction? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:691: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:692: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:693: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:694: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:695: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:696: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:697: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:698: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:699: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:700: error: expected ?=?, ?,?, ?;?, ?asm? or ?__attribute__? > before ?CALLBACK? > win32/api.c:703: error: ?CallbackFunction0_0? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_1? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_2? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_3? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_4? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_5? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_6? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_7? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_8? undeclared here (not in a > function) > win32/api.c:703: error: ?CallbackFunction0_9? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_0? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_1? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_2? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_3? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_4? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_5? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_6? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_7? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_8? undeclared here (not in a > function) > win32/api.c:704: error: ?CallbackFunction1_9? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_0? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_1? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_2? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_3? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_4? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_5? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_6? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_7? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_8? undeclared here (not in a > function) > win32/api.c:705: error: ?CallbackFunction2_9? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_0? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_1? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_2? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_3? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_4? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_5? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_6? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_7? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_8? undeclared here (not in a > function) > win32/api.c:706: error: ?CallbackFunction3_9? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_0? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_1? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_2? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_3? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_4? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_5? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_6? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_7? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_8? undeclared here (not in a > function) > win32/api.c:707: error: ?CallbackFunction4_9? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_0? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_1? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_2? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_3? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_4? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_5? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_6? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_7? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_8? undeclared here (not in a > function) > win32/api.c:708: error: ?CallbackFunction5_9? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_0? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_1? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_2? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_3? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_4? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_5? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_6? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_7? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_8? undeclared here (not in a > function) > win32/api.c:709: error: ?CallbackFunction6_9? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_0? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_1? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_2? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_3? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_4? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_5? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_6? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_7? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_8? undeclared here (not in a > function) > win32/api.c:710: error: ?CallbackFunction7_9? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_0? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_1? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_2? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_3? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_4? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_5? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_6? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_7? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_8? undeclared here (not in a > function) > win32/api.c:711: error: ?CallbackFunction8_9? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_0? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_1? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_2? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_3? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_4? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_5? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_6? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_7? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_8? undeclared here (not in a > function) > win32/api.c:712: error: ?CallbackFunction9_9? undeclared here (not in a > function) > win32/api.c: In function ?api_call?: > win32/api.c:772: warning: implicit conversion shortens 64-bit value into a > 32-bit value > win32/api.c:781: error: ?TRUE? undeclared (first use in this function) > win32/api.c:783: error: ?FALSE? undeclared (first use in this function) > win32/api.c:785: error: ?Win32API? has no member named ?prototype? > win32/api.c:805: error: ?LPARAM? undeclared (first use in this function) > win32/api.c:805: error: expected ?;? before ?rb_num2ulong? > win32/api.c:816: error: ?Win32API? has no member named ?function? > win32/api.c:822: error: ?Win32API? has no member named ?return_type? > win32/api.c:841: error: ?TCHAR? undeclared (first use in this function) > win32/api.c:841: error: expected expression before ?)? token > win32/api.c:843: error: too few arguments to function ?rb_str_new? > win32/api.c:846: error: expected expression before ?)? token > win32/api.c:846: error: expected expression before ?)? token > win32/api.c:846: error: expected expression before ?)? token > win32/api.c:846: error: expected expression before ?)? token > win32/api.c:857: error: expected expression before ?)? token > win32/api.c:859: error: too few arguments to function ?rb_str_new? > win32/api.c:862: error: expected expression before ?)? token > win32/api.c:862: error: expected expression before ?)? token > win32/api.c:862: error: expected expression before ?)? token > win32/api.c:862: error: expected expression before ?)? token > make: *** [api.o] Error 1 > > > Gem files will remain installed in > /Users/zeljko/.rvm/gems/ruby-1.9.3-p194 at test/gems/win32-api-1.4.8 for > inspection. > Results logged to /Users/zeljko/.rvm/gems/ruby-1.9.3-p194 at test > /gems/win32-api-1.4.8/ext/gem_make.out > An error occurred while installing win32-api (1.4.8), and Bundler cannot > continue. > Make sure that `gem install win32-api -v '1.4.8'` succeeds before bundling. > > ?eljko > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko at filipin.eu Tue Sep 18 14:42:00 2012 From: zeljko at filipin.eu (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 18 Sep 2012 16:42:00 +0200 Subject: [Wtr-development] [wtr-general] Re: Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: On Tue, Sep 18, 2012 at 3:57 PM, Jarmo wrote: > Add version too, i guess bundler takes last stable version of watir which has watir-classic as it's dependency: > gem "watir", "4.0.0.rc4" My mistake. It installs watir gem just fine when I explicitly add version. $ bundle Fetching gem metadata from http://rubygems.org/........ Fetching gem metadata from http://rubygems.org/.. Installing commonwatir (4.0.0) Installing watir (4.0.0.rc4) Using bundler (1.2.0) Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed. I thought watir gem would install watir-webdriver gem automatically, but looks like it is not the case: $ gem list *** LOCAL GEMS *** bundler (1.2.0) commonwatir (4.0.0) rake (0.9.2.2) rubygems-bundler (1.1.0) rvm (1.11.3.5) watir (4.0.0.rc4) $ irb > require "watir" => true > browser = Watir::Browser.new watir-webdriver gem is missing. Install it with the following command: gem install watir-webdriver ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Wed Sep 19 06:43:35 2012 From: jarmo.p at gmail.com (Jarmo) Date: Wed, 19 Sep 2012 09:43:35 +0300 Subject: [Wtr-development] [wtr-general] Re: Watir 4.0.0.rc1 Released! In-Reply-To: References: Message-ID: On Tue, Sep 18, 2012 at 5:42 PM, ?eljko Filipin wrote: > I thought watir gem would install watir-webdriver gem automatically, but > looks like it is not the case: > Nope, it does not currently do that. It does currently try to load watir-webdriver/watir-classic during runtime and fail with instructions of how to install a gem: https://github.com/watir/watir/blob/master/watir/lib/watir/loader.rb#L26-30 For that to happen we should release 2 versions of watir gem - one for ruby platform and another for windows. I actually think that it would be not too big of a deal so maybe i will do that after some research how to do that in the first place (i'm betting that i just have to change gem specification platform and perform a gem push). Jarmo -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Wed Sep 19 20:32:21 2012 From: jarmo.p at gmail.com (Jarmo) Date: Wed, 19 Sep 2012 23:32:21 +0300 Subject: [Wtr-development] Watir-Classic 3.2.0 Released! Message-ID: Hello everyone! I'm happy to announce that Watir-Classic 3.2.0 has been released! Put it into your Gemfile: gem "watir-classic" Or install it manually with: gem install watir-classic Changes: * Add Element#browser method as an alias for Element#page_container. * Fix SelectList#{select|clear} to fire onChange events for