From zeljko.filipin at wa-research.ch Tue Jun 1 04:49:58 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 1 Jun 2010 10:49:58 +0200 Subject: [Wtr-development] Fwd: Donate to Watir In-Reply-To: References: Message-ID: If you like the Watir project, you can make a donation. There is donate button at http://watir.com/. We have raised $570 this year. We will spend it on hosting and stuff like that. You can see list of donors and Bret's thank you note at http://pledgie.com/campaigns/2982 ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From watirjira at gmail.com Tue Jun 1 23:06:31 2010 From: watirjira at gmail.com (Bayard (JIRA)) Date: Tue, 1 Jun 2010 22:06:31 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-116) Add IE.version method to report which version of IE is installed & being used (e.g. IE7) Message-ID: <14002160.318.1275447991267.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-116?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=19653#action_19653 ] Bayard commented on WTR-116: ---------------------------- Implementing this should allow WTR-212 to be fixed given the variation in modal titles across versions. > Add IE.version method to report which version of IE is installed & being used (e.g. IE7) > ---------------------------------------------------------------------------------------- > > Key: WTR-116 > URL: http://jira.openqa.org/browse/WTR-116 > Project: Watir > Issue Type: New Feature > Affects Versions: 1.5.0/1.5.1 > Reporter: Paul Rogers > Assignee: Paul Rogers > Priority: Major > Fix For: Future > > > I think, now that we have vista, ie7 etc, that the following would be > useful: > ie.browser_version => "IE7" > ie.os => "XP" > ie.os_language =>"en-us" > etc > as Im sure, many people like me now either need to test multiple browsers/os > or at least need to know what it was tested on. > I have most of the code, I just need to know if there are any comments on > method names etc? > -------- Charlie replied with > I'm not currently testing with IE 7 but most likely will be soon, > particularly since the upgrade is part of the system updates which > means the user base will expand quickly. Can you add a JIRA task for > this? > > While the browser version makes sense in context of the ie object, > the os version and language don't. They'd make more sense to me in the > context of the Watir module, possibly in their own class, Environment? > Other thoughts? > -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Wed Jun 2 01:40:30 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Wed, 2 Jun 2010 00:40:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Updated: (WTR-116) Add IE.version method to report which version of IE is installed & being used (e.g. IE7) Message-ID: <23139100.323.1275457230840.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-116?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jarmo Pertman updated WTR-116: ------------------------------ Comment: was deleted (was: I'd suggest creating OS class inside of Watir module for OS specific methods. module Watir class OS def self.version # something end end end) > Add IE.version method to report which version of IE is installed & being used (e.g. IE7) > ---------------------------------------------------------------------------------------- > > Key: WTR-116 > URL: http://jira.openqa.org/browse/WTR-116 > Project: Watir > Issue Type: New Feature > Affects Versions: 1.5.0/1.5.1 > Reporter: Paul Rogers > Assignee: Paul Rogers > Priority: Major > Fix For: Future > > > I think, now that we have vista, ie7 etc, that the following would be > useful: > ie.browser_version => "IE7" > ie.os => "XP" > ie.os_language =>"en-us" > etc > as Im sure, many people like me now either need to test multiple browsers/os > or at least need to know what it was tested on. > I have most of the code, I just need to know if there are any comments on > method names etc? > -------- Charlie replied with > I'm not currently testing with IE 7 but most likely will be soon, > particularly since the upgrade is part of the system updates which > means the user base will expand quickly. Can you add a JIRA task for > this? > > While the browser version makes sense in context of the ie object, > the os version and language don't. They'd make more sense to me in the > context of the Watir module, possibly in their own class, Environment? > Other thoughts? > -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Wed Jun 2 01:40:30 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Wed, 2 Jun 2010 00:40:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-116) Add IE.version method to report which version of IE is installed & being used (e.g. IE7) Message-ID: <20970108.321.1275457230756.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-116?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=19654#action_19654 ] Jarmo Pertman commented on WTR-116: ----------------------------------- I'd suggest creating OS class inside of Watir module for OS specific methods. module Watir class OS def self.version # something end end end > Add IE.version method to report which version of IE is installed & being used (e.g. IE7) > ---------------------------------------------------------------------------------------- > > Key: WTR-116 > URL: http://jira.openqa.org/browse/WTR-116 > Project: Watir > Issue Type: New Feature > Affects Versions: 1.5.0/1.5.1 > Reporter: Paul Rogers > Assignee: Paul Rogers > Priority: Major > Fix For: Future > > > I think, now that we have vista, ie7 etc, that the following would be > useful: > ie.browser_version => "IE7" > ie.os => "XP" > ie.os_language =>"en-us" > etc > as Im sure, many people like me now either need to test multiple browsers/os > or at least need to know what it was tested on. > I have most of the code, I just need to know if there are any comments on > method names etc? > -------- Charlie replied with > I'm not currently testing with IE 7 but most likely will be soon, > particularly since the upgrade is part of the system updates which > means the user base will expand quickly. Can you add a JIRA task for > this? > > While the browser version makes sense in context of the ie object, > the os version and language don't. They'd make more sense to me in the > context of the Watir module, possibly in their own class, Environment? > Other thoughts? > -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Wed Jun 2 01:42:30 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Wed, 2 Jun 2010 00:42:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-116) Add IE.version method to report which version of IE is installed & being used (e.g. IE7) Message-ID: <8629228.325.1275457350455.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-116?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=19655#action_19655 ] Jarmo Pertman commented on WTR-116: ----------------------------------- I'd suggest creating OS class inside of Watir module for OS specific methods. {noformat} module Watir class OS def self.version # something end end end {noformat} > Add IE.version method to report which version of IE is installed & being used (e.g. IE7) > ---------------------------------------------------------------------------------------- > > Key: WTR-116 > URL: http://jira.openqa.org/browse/WTR-116 > Project: Watir > Issue Type: New Feature > Affects Versions: 1.5.0/1.5.1 > Reporter: Paul Rogers > Assignee: Paul Rogers > Priority: Major > Fix For: Future > > > I think, now that we have vista, ie7 etc, that the following would be > useful: > ie.browser_version => "IE7" > ie.os => "XP" > ie.os_language =>"en-us" > etc > as Im sure, many people like me now either need to test multiple browsers/os > or at least need to know what it was tested on. > I have most of the code, I just need to know if there are any comments on > method names etc? > -------- Charlie replied with > I'm not currently testing with IE 7 but most likely will be soon, > particularly since the upgrade is part of the system updates which > means the user base will expand quickly. Can you add a JIRA task for > this? > > While the browser version makes sense in context of the ie object, > the os version and language don't. They'd make more sense to me in the > context of the Watir module, possibly in their own class, Environment? > Other thoughts? > -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Thu Jun 3 11:40:31 2010 From: watirjira at gmail.com (Joe DiMauro (JIRA)) Date: Thu, 3 Jun 2010 10:40:31 -0500 (CDT) Subject: [Wtr-development] [JIRA] Created: (WTR-440) Update AutoIt ActiveX Control library (AutoItX3.dll) bundled with Watir to current version Message-ID: <2522252.333.1275579631176.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Update AutoIt ActiveX Control library (AutoItX3.dll) bundled with Watir to current version -------------------------------------------------------------------------------------------- Key: WTR-440 URL: http://jira.openqa.org/browse/WTR-440 Project: Watir Issue Type: Improvement Components: Gem installer Affects Versions: 1.6.5 Environment: Windows all versions Reporter: Joe DiMauro The AutoIt v3 ActiveX Control library (AutoItX3.dll) bundled with Watir1.6.5 is a very old version, (version 3.1.1.0), built back in 2005. As of 6/1/2010 the version of the library that is distributed with AutoIt's installer is version 3.3.6.1. It contains many improvements, fixes and new commands, functions and features, that could be useful with Watir if it were included, instead of the down-rev version that is currently bundled with Watir. See AutoIt's change log for details on the changes (from 3.1.1.0 to the current version): http://www.autoitscript.com/autoit3/docs/history.htm The current AutoItX3 installer is available as a free download at: http://www.autoitscript.com/autoit3/index.shtml There is also a 64-bit version of the library (AutoITX3_x64.dll) that might be of use to install with Watir on 64-bit systems. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Tue Jun 8 09:45:31 2010 From: watirjira at gmail.com (Joe DiMauro (JIRA)) Date: Tue, 8 Jun 2010 08:45:31 -0500 (CDT) Subject: [Wtr-development] [JIRA] Created: (WTR-441) Firefox method 'status' incorrectly using #{WINDOW_VAR} instead of #{window_var} Message-ID: <8588948.353.1276004731070.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Firefox method 'status' incorrectly using #{WINDOW_VAR} instead of #{window_var} ------------------------------------------------------------------------------------- Key: WTR-441 URL: http://jira.openqa.org/browse/WTR-441 Project: Watir Issue Type: Bug Components: FireWatir Affects Versions: 1.6.5 Environment: Firefox any version Reporter: Joe DiMauro The method 'status' in firefox.rb is referring to #{WINDOW_VAR} instead of #{window_var} Here's the error: uninitialized constant FireWatir::Firefox::WINDOW_VAR c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:105:in `const_missing' c:/ruby/lib/ruby/gems/1.8/gems/firewatir-1.6.5/lib/firewatir/firefox.rb:460:in `status' Fix is to replace #{WINDOW_VAR} with #{window_var} in this block of code at the approx line number 460): # Returns the Status of the page currently loaded in the browser from status bar. # # Output: # Status of the page. # def status js_status = js_eval("#{window_var}.status") js_status.empty? ? js_eval("#{WINDOW_VAR}.XULBrowserWindow.statusText;") : js_status end -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From zeljko.filipin at wa-research.ch Tue Jun 8 10:32:57 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 8 Jun 2010 16:32:57 +0200 Subject: [Wtr-development] Watir Twitter Buzz on watir.com Message-ID: If you want your tweet to show up on http://watir.com/, please include @watir in it. #watir is no longer about Watir most of the time. By the way, Watir now also has identi.ca account (http://identi.ca/watir) and group (http://identi.ca/group/watir). ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them vidipodkast.com - pri?amo o hardveru, softveru i ?asopisu Vidi -------------- next part -------------- An HTML attachment was scrubbed... URL: From watirjira at gmail.com Wed Jun 9 10:30:31 2010 From: watirjira at gmail.com (Aliaksandr Palanetski (JIRA)) Date: Wed, 9 Jun 2010 09:30:31 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-422) Need a feature to identify unknown element using inner_text Message-ID: <32928216.362.1276093831230.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-422?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=19659#action_19659 ] Aliaksandr Palanetski commented on WTR-422: ------------------------------------------- if is valid html element it can be identified using its inner text with xpath: ole_el = browser.element_by_xpath('//*[contains(text(), "text1")]/') \# html_el = Watir::Element.new ole_el > Need a feature to identify unknown element using inner_text > ----------------------------------------------------------- > > Key: WTR-422 > URL: http://jira.openqa.org/browse/WTR-422 > Project: Watir > Issue Type: New Feature > Components: HTML Controls > Affects Versions: 1.6.5 > Environment: IE: Windows > Reporter: Nick Wayne > Priority: Major > > Hi, > It would be really nice if a method is provided to identify any element using inner_text. Right now one has to know the type of element one is looking for to begin with. e.g. div or td or tr. But it is not possible to traverse back from the inner_text and get the element. > e.g. What I am asking for is : > text1 > to be able to get by matching text1 even though I do not know what is the type of is. > Best regards, > Nick -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From jarmo.p at gmail.com Fri Jun 11 16:13:23 2010 From: jarmo.p at gmail.com (Jarmo) Date: Fri, 11 Jun 2010 23:13:23 +0300 Subject: [Wtr-development] cleaning up watir's repo Message-ID: Hello. I've cloned Watir's whole repo from http://github.com/bret/watir and started to take a look on the current situation. I've started to notice that there's some things which should not be maybe there anymore. I propose that these things should be deleted or changed (that's why there's version control, isn't it?). Anyway, my preliminary proposal is to change these things: * commonwatir: 1) History.txt - is there any plan to use it? Currently it just seems too empty and has wrong version in it. Delete it? 2) README.txt - has a lot of missing information there plus "FIX" statements. Clean it up and just leave the license part maybe? How to run all tests for commonwatir? rake -T doesn't show any tasks related with running all the tests from commonwatir... * doc: Is 'doc' directory a source for the website wtr.rubyforge.com a.k.a watir.com up to date? For me, it seems not to be - so, deleting it or making it up to date seem only reasonable options to me. * firewatir: 1) CHANGES - it seems to be out of date because latest FireWatir seems to be also 1.6.5, but in that file it's 1.2.1... what to do? 2) attic directory - delete? How to run just all firewatir tests? * watir: 1) 'installer' directory seems to be obsolete... correct me if i'm wrong. Delete? 2) lib/readme.rb - out of date 3) unittests/.cvsignore - delete 4) building-watir.txt - delete? 5) CHANGES - no changes for 1.6.5? 6) coding_conventions.txt - is it really needed? delete? 7) install_dev_gems.bat - shouldn't .gemspec be used for development dependencies instead? delete? 8) NEWCHANGES? Why is it even a separate file? And if it has changes for Firewatir and Watir, then maybe delete CHANGES from Firewatir altogether and/or move it's contents to Watir's CHANGES? delete? 9) watir-rdoc.rb - why not have these in .gemspec again? delete? 10) watir_release.txt is necessary? delete? Again, no rake-task for just running Watir's tests? commonwatir, firewatir/watir have different license types... what about using the same license for all of these subprojects? If someone can give me answers to the proposals above then i could start making the changes and perform some pull requests on github. Jarmo From jarmo.p at gmail.com Fri Jun 11 16:37:10 2010 From: jarmo.p at gmail.com (Jarmo) Date: Fri, 11 Jun 2010 23:37:10 +0300 Subject: [Wtr-development] cleaning up watir's repo In-Reply-To: References: Message-ID: Okay, it seems that rake tasks for running tests are in "cruise" namespace, which made me think that they're not the things i want. I guess i was wrong. Maybe this namespace should not be cruise after all? Jarmo From watirjira at gmail.com Sat Jun 12 13:49:31 2010 From: watirjira at gmail.com (shanth (JIRA)) Date: Sat, 12 Jun 2010 12:49:31 -0500 (CDT) Subject: [Wtr-development] [JIRA] Created: (WTR-442) Many dependency gem while installing firewatir Message-ID: <10888462.394.1276364971051.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Many dependency gem while installing firewatir ---------------------------------------------- Key: WTR-442 URL: http://jira.openqa.org/browse/WTR-442 Project: Watir Issue Type: Improvement Components: FireWatir Affects Versions: 1.6.5 Environment: Windows XP Reporter: shanth Priority: Major I am trying to install firewatir.1.6.5.It is looking for so many gems(commonwatir-1.6.5.gem,user-choices-1.1.6.1.gem,xml-simple-1.0.12.gem and so on) before it get installed. It is very tedious process for the user. Is there any solution for this? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sat Jun 12 14:09:30 2010 From: watirjira at gmail.com (Charley Baker (JIRA)) Date: Sat, 12 Jun 2010 13:09:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Closed: (WTR-442) Many dependency gem while installing firewatir In-Reply-To: <10888462.394.1276364971051.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <32356670.396.1276366170699.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Charley Baker closed WTR-442. ----------------------------- Resolution: Not a problem gem install should install everything, I'm not sure how that's tedious. closing this as a non issue. > Many dependency gem while installing firewatir > ---------------------------------------------- > > Key: WTR-442 > URL: http://jira.openqa.org/browse/WTR-442 > Project: Watir > Issue Type: Improvement > Components: FireWatir > Affects Versions: 1.6.5 > Environment: Windows XP > Reporter: shanth > Priority: Major > > I am trying to install firewatir.1.6.5.It is looking for so many gems(commonwatir-1.6.5.gem,user-choices-1.1.6.1.gem,xml-simple-1.0.12.gem and so on) before it get installed. > It is very tedious process for the user. > Is there any solution for this? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sat Jun 12 14:28:30 2010 From: watirjira at gmail.com (shanth (JIRA)) Date: Sat, 12 Jun 2010 13:28:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Reopened: (WTR-442) Many dependency gem while installing firewatir In-Reply-To: <10888462.394.1276364971051.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <30091251.398.1276367310465.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] shanth reopened WTR-442: ------------------------ For me it is giving below error when trying to install firewatir1.6.5 Error installing firewatir: firewatir requires commonwatir =1.6.5 If i am trying to install commonwatir then it asking for user-choices. This process is going on until all dependency gems get install. Could you help me on this? > Many dependency gem while installing firewatir > ---------------------------------------------- > > Key: WTR-442 > URL: http://jira.openqa.org/browse/WTR-442 > Project: Watir > Issue Type: Improvement > Components: FireWatir > Affects Versions: 1.6.5 > Environment: Windows XP > Reporter: shanth > Priority: Major > > I am trying to install firewatir.1.6.5.It is looking for so many gems(commonwatir-1.6.5.gem,user-choices-1.1.6.1.gem,xml-simple-1.0.12.gem and so on) before it get installed. > It is very tedious process for the user. > Is there any solution for this? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sat Jun 12 15:42:30 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Sat, 12 Jun 2010 14:42:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-442) Many dependency gem while installing firewatir In-Reply-To: <10888462.394.1276364971051.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <12216332.400.1276371750979.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-442?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=19667#action_19667 ] Jarmo Pertman commented on WTR-442: ----------------------------------- try: gem update --system gem install firewatir And it should work. > Many dependency gem while installing firewatir > ---------------------------------------------- > > Key: WTR-442 > URL: http://jira.openqa.org/browse/WTR-442 > Project: Watir > Issue Type: Improvement > Components: FireWatir > Affects Versions: 1.6.5 > Environment: Windows XP > Reporter: shanth > Priority: Major > > I am trying to install firewatir.1.6.5.It is looking for so many gems(commonwatir-1.6.5.gem,user-choices-1.1.6.1.gem,xml-simple-1.0.12.gem and so on) before it get installed. > It is very tedious process for the user. > Is there any solution for this? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sat Jun 12 17:12:31 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Sat, 12 Jun 2010 16:12:31 -0500 (CDT) Subject: [Wtr-development] [JIRA] Created: (WTR-443) Watir::IE#close doesn't close the browser if #wait throws an exception Message-ID: <27975824.402.1276377151050.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Watir::IE#close doesn't close the browser if #wait throws an exception ---------------------------------------------------------------------- Key: WTR-443 URL: http://jira.openqa.org/browse/WTR-443 Project: Watir Issue Type: Bug Components: Wait Affects Versions: 1.6.5 Environment: All environments Reporter: Jarmo Pertman Watir::IE#close should close the browser even if #wait throws an exception - for example caused by a #run_error_checks Fix is available at http://github.com/jarmo/watir/commit/70c9b4a705cf91ebe47725a7aed9d77f4013e1ff with tests. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sat Jun 12 17:17:30 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Sat, 12 Jun 2010 16:17:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Created: (WTR-444) Watir::Element#style returns only inline style Message-ID: <3441033.404.1276377450444.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Watir::Element#style returns only inline style ---------------------------------------------- Key: WTR-444 URL: http://jira.openqa.org/browse/WTR-444 Project: Watir Issue Type: Bug Components: HTML Controls Affects Versions: 1.6.5 Environment: All environments. Reporter: Jarmo Pertman Currently Watir::Element#style returns only the style associated with the element inline thus:
would work: browser.div(:index => 1).style.width But when CSS is defined in HTML or CSS file, then this method would return empty string. CurrentStyle should be used instead of Style. You can read more about it from: http://msdn.microsoft.com/en-us/library/ms535231(VS.85).aspx Get the fix from http://github.com/jarmo/watir/commit/15c420eb43f8b37946e2dbbcbc92f0eefa72c53e with tests. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sat Jun 12 17:24:30 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Sat, 12 Jun 2010 16:24:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Created: (WTR-445) Watir::Table#to_a doesn't return TH elements and inner tables. Also Watir::TableRow#to_a is missing Message-ID: <15912535.406.1276377870527.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Watir::Table#to_a doesn't return TH elements and inner tables. Also Watir::TableRow#to_a is missing --------------------------------------------------------------------------------------------------- Key: WTR-445 URL: http://jira.openqa.org/browse/WTR-445 Project: Watir Issue Type: Bug Components: Table Affects Versions: 1.6.5 Environment: All environments. Reporter: Jarmo Pertman Currently, Watir::Table#to_a doesn't return texts from TH elements. Also, inner tables are ignored and Watir::TableRow#to_a method doesn't exist although it would be logical to exist. I've made a solution where Table#to_a uses recursively TableRow#to_a method, thus keeping code DRY. Also optional parameter *max_depth* got introduced for #to_a, which is by default 1, thus inner tables are not returned by #to_a. It is possible to specify higher value for *max_depth* to return inner tables. In short, this change would do the following changes: 1) TH elements' texts will be returned instead of an empty string when using #to_a 2) Watir::TableRow will get also #to_a method 3) Multi-dimensional arrays will be returned if max_depth parameter is higher than 1 and inner tables exist. It is possible to get the changes and tests from http://github.com/jarmo/watir/commit/ec63460f3e594ae5b0430c857beaccb45990ef61 -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sat Jun 12 17:28:30 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Sat, 12 Jun 2010 16:28:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Created: (WTR-446) Watir::IE#wait doesn't finish at certain circumstances Message-ID: <20485293.408.1276378110448.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Watir::IE#wait doesn't finish at certain circumstances ------------------------------------------------------ Key: WTR-446 URL: http://jira.openqa.org/browse/WTR-446 Project: Watir Issue Type: Bug Components: Wait Affects Versions: 1.6.5 Environment: All environments. Reporter: Jarmo Pertman Watir::IE#wait method won't finish if: 1) Go to some page with the browser - readystate will be READYSTATE_COMPLETE (4) 1) Open file save as dialog from the browser 2) Either save the file or close the dialog 3) For some reason readystate is READYSTATE_INTERACTIVE (3) Now, if you want to do something with Watir, which issues Watir::IE#wait, then it will block forever. My suggestion would be to also allow READYSTATE_INTERACTIVE. Get the fix from http://github.com/jarmo/watir/commit/7df8932946462f9284c63ca045b4fefe76a222d6 -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sun Jun 13 06:53:31 2010 From: watirjira at gmail.com (shanth (JIRA)) Date: Sun, 13 Jun 2010 05:53:31 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-442) Many dependency gem while installing firewatir In-Reply-To: <10888462.394.1276364971051.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <11491885.411.1276426411082.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-442?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=19668#action_19668 ] shanth commented on WTR-442: ---------------------------- Hi Jarmo, I tried as said by you.But no luck,still same problem. > Many dependency gem while installing firewatir > ---------------------------------------------- > > Key: WTR-442 > URL: http://jira.openqa.org/browse/WTR-442 > Project: Watir > Issue Type: Improvement > Components: FireWatir > Affects Versions: 1.6.5 > Environment: Windows XP > Reporter: shanth > Priority: Major > > I am trying to install firewatir.1.6.5.It is looking for so many gems(commonwatir-1.6.5.gem,user-choices-1.1.6.1.gem,xml-simple-1.0.12.gem and so on) before it get installed. > It is very tedious process for the user. > Is there any solution for this? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sun Jun 13 07:35:30 2010 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Sun, 13 Jun 2010 06:35:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-442) Many dependency gem while installing firewatir In-Reply-To: <10888462.394.1276364971051.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <20897300.413.1276428930588.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-442?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=19669#action_19669 ] Jarmo Pertman commented on WTR-442: ----------------------------------- what does gem --version output? It should be 1.3.6 But try with --include-dependencies switch, which should be by default anyway enabled, but maybe it isn't for you for some reason. Also, please copy here the exact error message you're receiving. gem install --include-dependencies firewatir > Many dependency gem while installing firewatir > ---------------------------------------------- > > Key: WTR-442 > URL: http://jira.openqa.org/browse/WTR-442 > Project: Watir > Issue Type: Improvement > Components: FireWatir > Affects Versions: 1.6.5 > Environment: Windows XP > Reporter: shanth > Priority: Major > > I am trying to install firewatir.1.6.5.It is looking for so many gems(commonwatir-1.6.5.gem,user-choices-1.1.6.1.gem,xml-simple-1.0.12.gem and so on) before it get installed. > It is very tedious process for the user. > Is there any solution for this? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Sun Jun 13 13:59:31 2010 From: watirjira at gmail.com (Charley Baker (JIRA)) Date: Sun, 13 Jun 2010 12:59:31 -0500 (CDT) Subject: [Wtr-development] [JIRA] Closed: (WTR-442) Many dependency gem while installing firewatir In-Reply-To: <10888462.394.1276364971051.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <3009946.416.1276451971147.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-442?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Charley Baker closed WTR-442. ----------------------------- Resolution: Not a problem I'm closing this issue once again. This is not an issue, just standard Ruby question. I'd suggest moving this conversation to the email list and refer to this jira ticket. My guess is you're behind a firewall or proxy and downloading the gems one by one, I can't imagine another scenario where this would happen, but once again, please move this to the mailing list. > Many dependency gem while installing firewatir > ---------------------------------------------- > > Key: WTR-442 > URL: http://jira.openqa.org/browse/WTR-442 > Project: Watir > Issue Type: Improvement > Components: FireWatir > Affects Versions: 1.6.5 > Environment: Windows XP > Reporter: shanth > Priority: Major > > I am trying to install firewatir.1.6.5.It is looking for so many gems(commonwatir-1.6.5.gem,user-choices-1.1.6.1.gem,xml-simple-1.0.12.gem and so on) before it get installed. > It is very tedious process for the user. > Is there any solution for this? -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From zeljko.filipin at wa-research.ch Mon Jun 14 06:37:07 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Mon, 14 Jun 2010 12:37:07 +0200 Subject: [Wtr-development] Watir ads at stackoverflow.com Message-ID: New round of free advertising of open source projects at stackoverflow.comhas just started. We had 17 votes the last time [1], 6 are needed to be displayed at stackoverflow.com. The ad got a few complaints about not having any text. (I just copied our logo.) This time I took a creative commons photo [2] and added some text. Feel free to vote or comment: http://meta.stackoverflow.com/questions/53346/open-source-advertising-sidebar-2h-2010/53544#53544 If anybody has an idea for different photo or text, please let me know. Even better, read the blog post [3], create an add and submit it. Then let us know so we can vote for it. (There can be more that one proposal.) [1] http://meta.stackoverflow.com/questions/31913/open-source-advertising-sidebar-1h-2010/38414#38414 [2] http://www.flickr.com/photos/snapr/484776493 [3] http://blog.stackoverflow.com/2010/06/free-vote-based-advertising-launches-second-round/ ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them vidipodkast.com - pri?amo o hardveru, softveru i ?asopisu Vidi -------------- next part -------------- An HTML attachment was scrubbed... URL: From watirjira at gmail.com Mon Jun 14 11:39:34 2010 From: watirjira at gmail.com (Bret Pettichord (JIRA)) Date: Mon, 14 Jun 2010 10:39:34 -0500 (CDT) Subject: [Wtr-development] [JIRA] Resolved: (WTR-441) Firefox method 'status' incorrectly using #{WINDOW_VAR} instead of #{window_var} In-Reply-To: <8588948.353.1276004731070.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <25082525.420.1276529974859.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-441?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bret Pettichord resolved WTR-441. --------------------------------- Resolution: Fixed Fix Version/s: Next This is fixed in master. > Firefox method 'status' incorrectly using #{WINDOW_VAR} instead of #{window_var} > ------------------------------------------------------------------------------------- > > Key: WTR-441 > URL: http://jira.openqa.org/browse/WTR-441 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.6.5 > Environment: Firefox any version > Reporter: Joe DiMauro > Fix For: Next > > > The method 'status' in firefox.rb is referring to #{WINDOW_VAR} instead of #{window_var} > Here's the error: > uninitialized constant FireWatir::Firefox::WINDOW_VAR > c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:105:in `const_missing' > c:/ruby/lib/ruby/gems/1.8/gems/firewatir-1.6.5/lib/firewatir/firefox.rb:460:in `status' > Fix is to replace #{WINDOW_VAR} with #{window_var} in this block of code at the approx line number 460): > # Returns the Status of the page currently loaded in the browser from status bar. > # > # Output: > # Status of the page. > # > def status > js_status = js_eval("#{window_var}.status") > js_status.empty? ? js_eval("#{WINDOW_VAR}.XULBrowserWindow.statusText;") : js_status > end -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From watirjira at gmail.com Mon Jun 14 11:41:30 2010 From: watirjira at gmail.com (Bret Pettichord (JIRA)) Date: Mon, 14 Jun 2010 10:41:30 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-441) Firefox method 'status' incorrectly using #{WINDOW_VAR} instead of #{window_var} In-Reply-To: <8588948.353.1276004731070.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <20381611.422.1276530090462.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-441?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=19672#action_19672 ] Bret Pettichord commented on WTR-441: ------------------------------------- Here is the commit: http://github.com/bret/watir/commit/840eed882e89537e5aaafc35ef692d47742de4f8 > Firefox method 'status' incorrectly using #{WINDOW_VAR} instead of #{window_var} > ------------------------------------------------------------------------------------- > > Key: WTR-441 > URL: http://jira.openqa.org/browse/WTR-441 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.6.5 > Environment: Firefox any version > Reporter: Joe DiMauro > Fix For: Next > > > The method 'status' in firefox.rb is referring to #{WINDOW_VAR} instead of #{window_var} > Here's the error: > uninitialized constant FireWatir::Firefox::WINDOW_VAR > c:/ruby/lib/ruby/gems/1.8/gems/activesupport-2.3.5/lib/active_support/dependencies.rb:105:in `const_missing' > c:/ruby/lib/ruby/gems/1.8/gems/firewatir-1.6.5/lib/firewatir/firefox.rb:460:in `status' > Fix is to replace #{WINDOW_VAR} with #{window_var} in this block of code at the approx line number 460): > # Returns the Status of the page currently loaded in the browser from status bar. > # > # Output: > # Status of the page. > # > def status > js_status = js_eval("#{window_var}.status") > js_status.empty? ? js_eval("#{WINDOW_VAR}.XULBrowserWindow.statusText;") : js_status > end -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://jira.openqa.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira From zeljko.filipin at wa-research.ch Tue Jun 15 03:52:12 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 15 Jun 2010 09:52:12 +0200 Subject: [Wtr-development] Filtering examples in rspec-2 Message-ID: Bret, this sounds similar to your additions to test/unit for Watir unit tests: http://blog.davidchelimsky.net/2010/06/14/filtering-examples-in-rspec-2/ ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them vidipodkast.com - pri?amo o hardveru, softveru i ?asopisu Vidi -------------- next part -------------- An HTML attachment was scrubbed... URL: From bret at pettichord.com Tue Jun 15 19:45:01 2010 From: bret at pettichord.com (Bret Pettichord) Date: Tue, 15 Jun 2010 18:45:01 -0500 Subject: [Wtr-development] Filtering examples in rspec-2 In-Reply-To: References: Message-ID: Great minds think alike. On Tue, Jun 15, 2010 at 2:52 AM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > Bret, > > this sounds similar to your additions to test/unit for Watir unit tests: > > http://blog.davidchelimsky.net/2010/06/14/filtering-examples-in-rspec-2/ > > ?eljko > -- > watir.com - community manager > watirpodcast.com - host > testingpodcast.com - audio podcasts on software testing. all of them > vidipodkast.com - pri?amo o hardveru, softveru i ?asopisu Vidi > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > -- Bret Pettichord Lead Developer, Watir, www.watir.com Blog, www.io.com/~wazmo/blog Twitter, www.twitter.com/bpettichord -------------- next part -------------- An HTML attachment was scrubbed... URL: From alister.scott at gmail.com Wed Jun 16 02:41:33 2010 From: alister.scott at gmail.com (Alister Scott) Date: Wed, 16 Jun 2010 16:41:33 +1000 Subject: [Wtr-development] Celerity Question - java.net.ConnectException Message-ID: Hi, I am having an issue with running a basic celerity script, and couldn't find a celerity mailing list so I thought I would try here. I am trying to get celerity running, and using the example script on http://celerity.rubyforge.org/ I am using JDK 1.6.0_20 JRuby 1.5.1 Celerity 0.7.9 from Gemcutter When I try to run the sample script, or any celerity script, I get the error below. Can anyone suggest something to do/try? >>jruby yay.rb java/net/PlainSocketImpl.java:-2:in `socketConnect': java.net.ConnectException: Connection timed out: connect (NativeException) from java/net/PlainSocketImpl.java:333:in `doConnect' from java/net/PlainSocketImpl.java:195:in `connectToAddress' from java/net/PlainSocketImpl.java:182:in `connect' from java/net/SocksSocketImpl.java:366:in `connect' from java/net/Socket.java:529:in `connect' from java/net/Socket.java:478:in `connect' from java/net/Socket.java:375:in `' from java/net/Socket.java:249:in `' ... 14 levels... from c:/jruby-1.5.1/lib/ruby/gems/1.8/gems/celerity-0.7.9/lib/celerity/c ontainer.rb:761:in `rescue_status_code_exception' from c:/jruby-1.5.1/lib/ruby/gems/1.8/gems/celerity-0.7.9/lib/celerity/b rowser.rb:99:in `goto' from yay.rb:5 Cheers, Alister Scott Brisbane, Australia Watir Web Master: http://watir.com Blog: http://watirmelon.com LinkedIn: http://www.linkedin.com/in/alisterscott "If you never change your mind, why have one?" ~ Edward de Bono -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Wed Jun 16 08:56:08 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Wed, 16 Jun 2010 14:56:08 +0200 Subject: [Wtr-development] [wtr-general] Celerity Question - java.net.ConnectException In-Reply-To: References: Message-ID: On Wed, Jun 16, 2010 at 8:41 AM, Alister Scott wrote: > I am having an issue with running a basic celerity script, and couldn't find a celerity mailing list I found something, I know celerity-users at rubyforge.org is active. http://rubyforge.org/mail/?group_id=6198 http://rubyforge.org/forum/?group_id=6198 ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them vidipodkast.com - pri?amo o hardveru, softveru i ?asopisu Vidi -------------- next part -------------- An HTML attachment was scrubbed... URL: From marekj.com at gmail.com Wed Jun 16 12:04:16 2010 From: marekj.com at gmail.com (marekj) Date: Wed, 16 Jun 2010 11:04:16 -0500 Subject: [Wtr-development] cleaning up watir's repo In-Reply-To: References: Message-ID: Hi, I've made some documentation cleanup and rdoc fixes to unify the 3 separate gems as one project and I've made a pull request but due to time constraints I didn't follow up with the maintainers Here is the branch. http://github.com/marekj/watir/tree/rdocfix It has fixes to some of the things you mention. I resend the pull request marekj On Fri, Jun 11, 2010 at 3:13 PM, Jarmo wrote: > Hello. > > I've cloned Watir's whole repo from http://github.com/bret/watir and > started to take a look on the current situation. > > I've started to notice that there's some things which should not be > maybe there anymore. I propose that these things should be deleted or > changed (that's why there's version control, isn't it?). Anyway, my > preliminary proposal is to change these things: > > > * commonwatir: > 1) History.txt - is there any plan to use it? Currently it just seems > too empty and has wrong version in it. Delete it? > 2) README.txt - has a lot of missing information there plus "FIX" > statements. Clean it up and just leave the license part maybe? > > How to run all tests for commonwatir? rake -T doesn't show any tasks > related with running all the tests from commonwatir... > > > * doc: > Is 'doc' directory a source for the website wtr.rubyforge.com a.k.a > watir.com up to date? For me, it seems not to be - so, deleting it or > making it up to date seem only reasonable options to me. > > > * firewatir: > 1) CHANGES - it seems to be out of date because latest FireWatir seems > to be also 1.6.5, but in that file it's 1.2.1... what to do? > 2) attic directory - delete? > > How to run just all firewatir tests? > > * watir: > 1) 'installer' directory seems to be obsolete... correct me if i'm > wrong. Delete? > 2) lib/readme.rb - out of date > 3) unittests/.cvsignore - delete > 4) building-watir.txt - delete? > 5) CHANGES - no changes for 1.6.5? > 6) coding_conventions.txt - is it really needed? delete? > 7) install_dev_gems.bat - shouldn't .gemspec be used for development > dependencies instead? delete? > 8) NEWCHANGES? Why is it even a separate file? And if it has changes > for Firewatir and Watir, then maybe delete CHANGES from Firewatir > altogether and/or move it's contents to Watir's CHANGES? delete? > 9) watir-rdoc.rb - why not have these in .gemspec again? delete? > 10) watir_release.txt is necessary? delete? > > Again, no rake-task for just running Watir's tests? > > commonwatir, firewatir/watir have different license types... what > about using the same license for all of these subprojects? > > If someone can give me answers to the proposals above then i could > start making the changes and perform some pull requests on github. > > Jarmo > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > From alister.scott at gmail.com Wed Jun 16 18:39:04 2010 From: alister.scott at gmail.com (Alister Scott) Date: Thu, 17 Jun 2010 08:39:04 +1000 Subject: [Wtr-development] [wtr-general] Celerity Question - java.net.ConnectException In-Reply-To: References: Message-ID: Thanks for the lead Zeljko. I found a topic on using celerity behind a firewall which fixed my problem. http://rubyforge.org/forum/forum.php?thread_id=46879&forum_id=24213 Alister Scott Brisbane, Australia Watir Web Master: http://watir.com Blog: http://watirmelon.com LinkedIn: http://www.linkedin.com/in/alisterscott "If you never change your mind, why have one?" ~ Edward de Bono On Wed, Jun 16, 2010 at 10:56 PM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > On Wed, Jun 16, 2010 at 8:41 AM, Alister Scott > wrote: > > I am having an issue with running a basic celerity script, and couldn't > find a celerity mailing list > > I found something, I know celerity-users at rubyforge.org is active. > > http://rubyforge.org/mail/?group_id=6198 > http://rubyforge.org/forum/?group_id=6198 > > ?eljko > -- > watir.com - community manager > watirpodcast.com - host > testingpodcast.com - audio podcasts on software testing. all of them > vidipodkast.com - pri?amo o hardveru, softveru i ?asopisu Vidi > > _______________________________________________ > 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.filipin at wa-research.ch Thu Jun 17 09:20:00 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Thu, 17 Jun 2010 15:20:00 +0200 Subject: [Wtr-development] [wtr-general] Re: Celerity Question - java.net.ConnectException In-Reply-To: <86e3a6e5-27ff-4fb7-9d53-4a0d088a6e4c@s6g2000prg.googlegroups.com> References: <86e3a6e5-27ff-4fb7-9d53-4a0d088a6e4c@s6g2000prg.googlegroups.com> Message-ID: On Thu, Jun 17, 2010 at 12:38 AM, Alister Scott wrote: > I found a topic on using celerity behind a firewall which fixed my > problem. I have installed rvm, jruby and celerity trying to reproduce your problem, but everything worked for me. :) ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Thu Jun 17 11:39:03 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Thu, 17 Jun 2010 17:39:03 +0200 Subject: [Wtr-development] Watir site at stackexchange.com Message-ID: Hi, Recently I have asked if people are interested in creating Watir site at stackexchange.com [1]. I was pleasantly surprised by the number of people that are interested [2]. Just today I have read that new stackexchange.comcan be created [3], so I have created Watir site [4]. I think stackoverflow.com software (also used at stackexchange.com) is the best solution for Watir support (and almost any other kind of support). If you think Watir site at stackexchange.com is a good idea, all you have to do is: - go to http://area51.stackexchange.com/proposals/6738/watir?referrer=cBxk1oncaoo1 - click link "Follow It!" - enter your e-mail - click button "Submit" (I was tempted to write this as a Watir script.) Optionally, you can add on-topic and off-topic questions, and vote on other questions as on- or off-topic. Feel free to spread the word on your Twitter/Facebook/blog... If you want to learn more about stackexchange.com, read FAQ [5] ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them vidipodkast.com - pri?amo o hardveru, softveru i ?asopisu Vidi [1] http://groups.google.com/group/watir-general/browse_thread/thread/f34f8a5fb2631ed7 [2] http://meta.stackexchange.com/questions/6056/proposal-for-watir-site [3] http://blog.stackoverflow.com/2010/06/area-51-we-come-in-peace/ [4] http://area51.stackexchange.com/proposals/6738/watir?referrer=cBxk1oncaoo1 [5] http://area51.stackexchange.com/faq -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Thu Jun 17 12:13:18 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Thu, 17 Jun 2010 18:13:18 +0200 Subject: [Wtr-development] Watir ads at stackoverflow.com In-Reply-To: References: Message-ID: On Mon, Jun 14, 2010 at 12:37 PM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > http://meta.stackoverflow.com/questions/53346/open-source-advertising-sidebar-2h-2010/53544#53544 Watir ad at stackoverflow.com still has 0 votes. We need 6. Feel free to comment at stackoverflow.com or here if you do not like the ad. ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Fri Jun 18 08:54:31 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Fri, 18 Jun 2010 14:54:31 +0200 Subject: [Wtr-development] Watir site at stackexchange.com In-Reply-To: References: Message-ID: On Thu, Jun 17, 2010 at 5:39 PM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > - go to http://area51.stackexchange.com/proposals/6738/watir?referrer=cBxk1oncaoo1 > - click link "Follow It!" > - enter your e-mail > - click button "Submit" I am glad to see that in just one day we have 9 people "following" Watir site. I did some research and the site will not be created unless 60 people are following it. So, 51 to go. > Optionally, you can add on-topic and off-topic questions, and vote on other questions as on- or off-topic. I have added 5 questions. (One person can only add 5 questions.) Please vote if questions are on- or off-topic. (I can not vote for my questions.) Also, please add a question (or five). If you need inspiration: http://groups.google.com/group/watir-general/topics http://stackoverflow.com/tags/watir http://wiki.openqa.org/display/WTR/FAQ I really think that moving support to stackexchange.com will be a great thing for Watir community. But, I can not do it myself. The software is built in a way that requires community participation, not one man show. Thanks, ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Fri Jun 18 11:35:14 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Fri, 18 Jun 2010 17:35:14 +0200 Subject: [Wtr-development] Watir ads at stackoverflow.com In-Reply-To: References: Message-ID: Stack Overflow Watir ad got the first vote! :) 5 more to go until the ad is displayed at stackoverflow.com. (Voting requires meta.stackoverflow.comaccount with 15 reputation.) http://meta.stackoverflow.com/questions/53346/open-source-advertising-sidebar-2h-2010/53544#53544 ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Mon Jun 21 11:22:18 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Mon, 21 Jun 2010 17:22:18 +0200 Subject: [Wtr-development] Watir site at stackexchange.com In-Reply-To: References: Message-ID: On Thu, Jun 17, 2010 at 5:39 PM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > - go to http://area51.stackexchange.com/proposals/6738/watir?referrer=cBxk1oncaoo1 > - click link "Follow It!" > - enter your e-mail > - click button "Submit" Update: the site has 21 followers. To move to the next phase we still need 39 followers, 5 on-topic questions and 5 off-topic questions. Please post questions (on- or off-topic), vote on existing questions (are they on- or off-topic). You can also comment the questions. The site will not be created if we do not form a community there. Feel free to spread the word on your Twitter/Facebook/blog... If you have any questions, I will be more than glad to answer, if I can. Just to make it clear, the site is in definition phase, meaning that we have do decide as a community what the site should look like. We should decide which questions are on- or off-topic. Please do not post answers to questions, just vote and comment. I plan to write a blog post explaining in more detail why I think this is so important for Watir community. I would also like to record a podcast about the site. I am looking for one or two people that would talk for about 30 minutes with me. Interested? ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Thu Jun 24 07:03:36 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Thu, 24 Jun 2010 13:03:36 +0200 Subject: [Wtr-development] Watir ads at stackoverflow.com In-Reply-To: References: Message-ID: A big thank you to everybody that voted for Watir ad at Stack Overflow. We have 7 votes at the moment, 6 are needed before the ad is displayed. In the first day the ad is displayed over 9000 times, and 9 people clicked on it. That means we have 0.1 % click-through rate. You can see the stats (and vote) at http://rads.stackoverflow.com/ossads/all ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Thu Jun 24 07:36:41 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Thu, 24 Jun 2010 13:36:41 +0200 Subject: [Wtr-development] Watir site at stackexchange.com In-Reply-To: References: Message-ID: Update on the proposal: we have 29 followers, 31 to go. We still need on-topic and off-topic example questions. You can submit only 5 questions, and give only 5 votes, it is not a lot of work. If you need inspiration for the questions: http://groups.google.com/group/watir-general/topics http://stackoverflow.com/tags/watir http://wiki.openqa.org/display/WTR/FAQ The site is at http://bit.ly/watirse I am still looking for somebody that would record 20-30 minute podcast on the site with me. ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Sat Jun 26 04:47:08 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Sat, 26 Jun 2010 10:47:08 +0200 Subject: [Wtr-development] Watir Podcast on Watir Stack Exchange site Message-ID: I am recording Watir Podcast on Watir Stack Exchange site with Felipe Knorr Kuhn in about 12 hours. If you have questions for us, ask. ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them vidipodkast.com - pri?amo o hardveru, softveru i ?asopisu Vidi -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Sun Jun 27 14:34:55 2010 From: jarmo.p at gmail.com (Jarmo) Date: Sun, 27 Jun 2010 21:34:55 +0300 Subject: [Wtr-development] Watir ads at stackoverflow.com In-Reply-To: References: Message-ID: I don't see any statistics when clicking that URL... is it a problem of the StackOverflow? Jarmo On Thu, Jun 24, 2010 at 2:03 PM, ?eljko Filipin wrote: > A big thank you to everybody that voted for Watir ad at Stack Overflow. We > have 7 votes at the moment, 6 are needed before the ad is displayed. In the > first day the ad is displayed over 9000 times, and 9 people clicked on it. > That means we have 0.1 % click-through rate. > > You can see the stats (and vote) at http://rads.stackoverflow.com/ossads/all > > ?eljko > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > From zeljko.filipin at wa-research.ch Mon Jun 28 08:58:52 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Mon, 28 Jun 2010 14:58:52 +0200 Subject: [Wtr-development] Filtering examples in rspec-2 In-Reply-To: References: Message-ID: On Wed, Jun 16, 2010 at 1:45 AM, Bret Pettichord wrote: > Great minds think alike. True. :) ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Mon Jun 28 11:21:46 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Mon, 28 Jun 2010 17:21:46 +0200 Subject: [Wtr-development] Watir ads at stackoverflow.com In-Reply-To: References: Message-ID: On Sun, Jun 27, 2010 at 8:34 PM, Jarmo wrote: > I don't see any statistics when clicking that URL Jarmo, I expected better repro steps from you. :) You just have to hover "view stats" links and stats will appear. OS (version), browser (version)? Do you have JS enabled? It works for me in the newest versions of all major browsers on Mac (FF, Safari, Chrome, Opera). Even works on iPhone in Safari (there is no hover on iPhone, you have to click the link). Does not work on iPhone in Opera Mini. ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Mon Jun 28 14:33:39 2010 From: jarmo.p at gmail.com (Jarmo) Date: Mon, 28 Jun 2010 21:33:39 +0300 Subject: [Wtr-development] Watir ads at stackoverflow.com In-Reply-To: References: Message-ID: Yup, it was a problem with my browser. I just had quite empty page there :) Jarmo On Mon, Jun 28, 2010 at 6:21 PM, ?eljko Filipin wrote: > On Sun, Jun 27, 2010 at 8:34 PM, Jarmo wrote: >> I don't see any statistics when clicking that URL > > Jarmo, I expected better repro steps from you. :) > > You just have to hover "view stats" links and stats will appear. > > OS (version), browser (version)? Do you have JS enabled? > > It works for me in the newest versions of all major browsers on Mac (FF, > Safari, Chrome, Opera). Even works on iPhone in Safari (there is no hover on > iPhone, you have to click the link). Does not work on iPhone in Opera Mini. > > ?eljko > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > From zeljko.filipin at wa-research.ch Wed Jun 30 09:48:01 2010 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Wed, 30 Jun 2010 15:48:01 +0200 Subject: [Wtr-development] Watir site at stackexchange.com In-Reply-To: References: Message-ID: Update on the proposal: we have 34 followers, 26 to go. Please also submit example questions and vote on existing ones. If you need inspiration for the questions: http://groups.google.com/group/watir-general/topics http://stackoverflow.com/tags/watir http://wiki.openqa.org/display/WTR/FAQ The site is at http://bit.ly/watirse ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: