From zeljko.filipin at wa-research.ch Tue Mar 1 08:10:35 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 1 Mar 2011 14:10:35 +0100 Subject: [Wtr-development] Mentoring Organization Applications Now Being Accepted for Google Summer of Code Message-ID: If anybody is interested in mentoring a student, take a look: http://google-opensource.blogspot.com/2011/02/mentoring-organization-applications-now.html ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them viaqa.mobi conference on software testing - organizer -------------- next part -------------- An HTML attachment was scrubbed... URL: From watirjira at gmail.com Wed Mar 2 14:25:20 2011 From: watirjira at gmail.com (Mark Wieder (JIRA)) Date: Wed, 2 Mar 2011 13:25:20 -0600 (CST) Subject: [Wtr-development] [JIRA] Commented: (WTR-465) improved speed of filling text fields In-Reply-To: <14796054.632.1289948720475.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <30362023.1399.1299093920779.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20132#action_20132 ] Mark Wieder commented on WTR-465: --------------------------------- Is there a downside to this? Here's the original from htmlelements.rb for i in 0..value.length-1 #sleep element.typingspeed # typing speed c = value[i,1] #element.log " adding c.chr " + c #.chr.to_s @o.value = "#{(@o.value.to_s + c)}" #c.chr @o.fireEvent("onKeyDown") @o.fireEvent("onKeyPress") @o.fireEvent("onKeyUp") end causing a read of the textfield for each string char entered. This seems unnecessary except for the case where you really *do* want to slow down text input, and for that you'd use individual doKeyPress operations with sleeps interspersed. What I've done is eliminate the for loop and its associated reread of the text field and simply catenate the string all at once. Works for me and I don't see any drawbacks. > improved speed of filling text fields > ------------------------------------- > > Key: WTR-465 > URL: http://jira.openqa.org/browse/WTR-465 > Project: Watir > Issue Type: Improvement > Components: FireWatir > Affects Versions: 1.6.7 > Environment: Fedora Core 13, Firefox 3.6.12 > Reporter: Mark Wieder > Assignee: Angrez > > The set method for filling text fields was operating at about one char per second, so I rewrote doKeyPress. It now works much faster for both append and set. > begin > #...existing test for max length > end > # get existing text > oldvalue = "#{(o.value.to_s)}" > # append new text > oldvalue += value > @o.value = oldvalue > @o.fireEvent("onKeyDown") > @o.fireEvent("onKeyPress") > @o.fireEvent("onKeyUp") > Tried and failed to create a diff file for you... -- 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 Thu Mar 3 04:02:59 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Thu, 3 Mar 2011 10:02:59 +0100 Subject: [Wtr-development] [wtr-general] Watir day and Selenium Conf In-Reply-To: References: Message-ID: Win a ticket to the Selenium Conference http://blog.softwaretestingclub.com/2011/03/win-a-ticket-to-the-selenium-conference/ ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From andreastt at opera.com Thu Mar 3 07:04:19 2011 From: andreastt at opera.com (Andreas Tolf Tolfsen) Date: Thu, 03 Mar 2011 13:04:19 +0100 Subject: [Wtr-development] Flattr integraion for watir.com? Message-ID: Would an idea for raising more funds for Watir be to integrate Flattr on watir.com? I personally think Flattr is a great idea, and you can have a look at it here: The basic idea is that you give Flattr a monthly amount you choose that is then divided across the number of Flattr ?Like? links you click that month. This lets you easily donate and support projects with a minimal amount of hassle. From charley.baker at gmail.com Thu Mar 3 18:59:03 2011 From: charley.baker at gmail.com (Charley Baker) Date: Thu, 3 Mar 2011 16:59:03 -0700 Subject: [Wtr-development] Flattr integraion for watir.com? In-Reply-To: References: Message-ID: Sounds like a reasonable idea. I'll defer to Zeljko. Sign up for an account and add the button to the watir website? -c On Thu, Mar 3, 2011 at 5:04 AM, Andreas Tolf Tolfsen wrote: > Would an idea for raising more funds for Watir be to integrate Flattr on > watir.com? > > I personally think Flattr is a great idea, and you can have a look at it > here: > > > > The basic idea is that you give Flattr a monthly amount you choose that is > then > divided across the number of Flattr ?Like? links you click that month. > This > lets you easily donate and support projects with a minimal amount of > hassle. > _______________________________________________ > 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 watirjira at gmail.com Fri Mar 4 03:32:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Fri, 4 Mar 2011 02:32:20 -0600 (CST) Subject: [Wtr-development] [JIRA] Commented: (WTR-465) improved speed of filling text fields In-Reply-To: <14796054.632.1289948720475.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <5964101.1414.1299227540846.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-465?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20135#action_20135 ] Jarmo Pertman commented on WTR-465: ----------------------------------- Doesn't it change any behavior regarding with JavaScript events - e.g. onkeypress, onkeydown, onkeyup, onchange and so on? > improved speed of filling text fields > ------------------------------------- > > Key: WTR-465 > URL: http://jira.openqa.org/browse/WTR-465 > Project: Watir > Issue Type: Improvement > Components: FireWatir > Affects Versions: 1.6.7 > Environment: Fedora Core 13, Firefox 3.6.12 > Reporter: Mark Wieder > Assignee: Angrez > > The set method for filling text fields was operating at about one char per second, so I rewrote doKeyPress. It now works much faster for both append and set. > begin > #...existing test for max length > end > # get existing text > oldvalue = "#{(o.value.to_s)}" > # append new text > oldvalue += value > @o.value = oldvalue > @o.fireEvent("onKeyDown") > @o.fireEvent("onKeyPress") > @o.fireEvent("onKeyUp") > Tried and failed to create a diff file for you... -- 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 Fri Mar 4 04:24:09 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Fri, 4 Mar 2011 10:24:09 +0100 Subject: [Wtr-development] Flattr integraion for watir.com? In-Reply-To: References: Message-ID: On Fri, Mar 4, 2011 at 12:59 AM, Charley Baker wrote: > Sign up for an account and add the button to the watir website? Done. :) Take a look: http://watir.com/ ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcbetts at gmail.com Fri Mar 4 18:07:51 2011 From: marcbetts at gmail.com (marc betts) Date: Fri, 4 Mar 2011 18:07:51 -0500 Subject: [Wtr-development] zero-based indexing status? Message-ID: a while back there was some discussion of adding an option to watir for zero-based indexing. i'm very interested in this and was wondering if there's been any progress on it. if there's need for alpha/beta testers of this feature, let me know what i need to do. my apologies if there's been an update and i missed; i searched the archives but couldn't find anything. thanks, marc -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Sat Mar 5 02:05:03 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Sat, 5 Mar 2011 08:05:03 +0100 Subject: [Wtr-development] zero-based indexing status? In-Reply-To: References: Message-ID: On Sat, Mar 5, 2011 at 12:07 AM, marc betts wrote: > a while back there was some discussion of adding an option to watir for zero-based indexing. watir-webdriver gem already uses zero-based indexing, watir still does not: http://jira.openqa.org/browse/WTR-61 ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them viaqa.mobi conference on software testing - organizer -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcbetts at gmail.com Sat Mar 5 09:36:09 2011 From: marcbetts at gmail.com (marc betts) Date: Sat, 5 Mar 2011 09:36:09 -0500 Subject: [Wtr-development] zero-based indexing status? In-Reply-To: References: Message-ID: Thanks, ?eljko. The problem I have is that I'm in the process of migrating my tests from watir to watir-webdriver. So I've currently got tests using each and was hoping to try to simplify things during the transition. Marc On Sat, Mar 5, 2011 at 2:05 AM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > On Sat, Mar 5, 2011 at 12:07 AM, marc betts wrote: > > a while back there was some discussion of adding an option to watir for > zero-based indexing. > > watir-webdriver gem already uses zero-based indexing, watir still does not: > > http://jira.openqa.org/browse/WTR-61 > > ?eljko > -- > watir.com - community manager > watirpodcast.com - host > testingpodcast.com - audio podcasts on software testing. all of them > viaqa.mobi conference on software testing - organizer > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Sat Mar 5 09:40:39 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Sat, 5 Mar 2011 15:40:39 +0100 Subject: [Wtr-development] Flattr integraion for watir.com? In-Reply-To: References: Message-ID: We have been "Flattred by: 2", but it does not say who, but "anonymous". Downside for flattr.com is that we have to pay 2 eur (2.80 usd) each month to keep the account alive. If we earn more than 2 eur/month, then there is no problem. :) ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From bret at pettichord.com Sat Mar 5 18:28:57 2011 From: bret at pettichord.com (Bret Pettichord) Date: Sat, 5 Mar 2011 17:28:57 -0600 Subject: [Wtr-development] zero-based indexing status? In-Reply-To: References: Message-ID: This feature is currently in development. https://github.com/bret/watir/tree/zero-index On Sat, Mar 5, 2011 at 8:36 AM, marc betts wrote: > Thanks, ?eljko. The problem I have is that I'm in the process of migrating > my tests from watir to watir-webdriver. So I've currently got tests using > each and was hoping to try to simplify things during the transition. > > Marc > > > On Sat, Mar 5, 2011 at 2:05 AM, ?eljko Filipin < > zeljko.filipin at wa-research.ch> wrote: > >> On Sat, Mar 5, 2011 at 12:07 AM, marc betts wrote: >> > a while back there was some discussion of adding an option to watir for >> zero-based indexing. >> >> watir-webdriver gem already uses zero-based indexing, watir still does >> not: >> >> http://jira.openqa.org/browse/WTR-61 >> >> ?eljko >> -- >> watir.com - community manager >> watirpodcast.com - host >> testingpodcast.com - audio podcasts on software testing. all of them >> viaqa.mobi conference on software testing - organizer >> >> > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > -- Bret Pettichord Director, Watir Project, www.watir.com Blog, www.testingwithvision.com Twitter, www.twitter.com/bpettichord -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Sun Mar 6 04:18:15 2011 From: jarmo.p at gmail.com (Jarmo) Date: Sun, 6 Mar 2011 11:18:15 +0200 Subject: [Wtr-development] zero-based indexing status? In-Reply-To: References: Message-ID: But what's the status of it? Jarmo On Sun, Mar 6, 2011 at 1:28 AM, Bret Pettichord wrote: > This feature is currently in development. > > https://github.com/bret/watir/tree/zero-index > > On Sat, Mar 5, 2011 at 8:36 AM, marc betts wrote: > >> Thanks, ?eljko. The problem I have is that I'm in the process of migrating >> my tests from watir to watir-webdriver. So I've currently got tests using >> each and was hoping to try to simplify things during the transition. >> >> Marc >> >> >> On Sat, Mar 5, 2011 at 2:05 AM, ?eljko Filipin < >> zeljko.filipin at wa-research.ch> wrote: >> >>> On Sat, Mar 5, 2011 at 12:07 AM, marc betts wrote: >>> > a while back there was some discussion of adding an option to watir for >>> zero-based indexing. >>> >>> watir-webdriver gem already uses zero-based indexing, watir still does >>> not: >>> >>> http://jira.openqa.org/browse/WTR-61 >>> >>> ?eljko >>> -- >>> watir.com - community manager >>> watirpodcast.com - host >>> testingpodcast.com - audio podcasts on software testing. all of them >>> viaqa.mobi conference on software testing - organizer >>> >>> >> >> _______________________________________________ >> Wtr-development mailing list >> Wtr-development at rubyforge.org >> http://rubyforge.org/mailman/listinfo/wtr-development >> > > > > -- > Bret Pettichord > Director, Watir Project, www.watir.com > > Blog, www.testingwithvision.com > Twitter, www.twitter.com/bpettichord > > > _______________________________________________ > 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 bret at pettichord.com Sun Mar 6 13:51:20 2011 From: bret at pettichord.com (Bret Pettichord) Date: Sun, 6 Mar 2011 12:51:20 -0600 Subject: [Wtr-development] zero-based indexing status? In-Reply-To: References: Message-ID: It looks like I last worked on it in October. My recollection is that it was about 90% functional complete. A few tests were still failing when I got a round of feedback. Some comments were made about the API, and I think those were fixed. There were also concerns expressed about how I did the unit tests, but I didn't know how to address them without reducing coverage. I would be happy with it as soon as the rest of the tests were passing. At the time, I was hoping to use this at Convio, but a number of developments at work have delayed that, so I haven't had that motivation. Indeed, I was transferred to a new project and new role in October and that will finish up Monday, so that may give me time again to wrap this up. Bret On Sun, Mar 6, 2011 at 3:18 AM, Jarmo wrote: > But what's the status of it? > > Jarmo > > > On Sun, Mar 6, 2011 at 1:28 AM, Bret Pettichord wrote: > >> This feature is currently in development. >> >> https://github.com/bret/watir/tree/zero-index >> >> On Sat, Mar 5, 2011 at 8:36 AM, marc betts wrote: >> >>> Thanks, ?eljko. The problem I have is that I'm in the process of >>> migrating my tests from watir to watir-webdriver. So I've currently got >>> tests using each and was hoping to try to simplify things during the >>> transition. >>> >>> Marc >>> >>> >>> On Sat, Mar 5, 2011 at 2:05 AM, ?eljko Filipin < >>> zeljko.filipin at wa-research.ch> wrote: >>> >>>> On Sat, Mar 5, 2011 at 12:07 AM, marc betts >>>> wrote: >>>> > a while back there was some discussion of adding an option to watir >>>> for zero-based indexing. >>>> >>>> watir-webdriver gem already uses zero-based indexing, watir still does >>>> not: >>>> >>>> http://jira.openqa.org/browse/WTR-61 >>>> >>>> ?eljko >>>> -- >>>> watir.com - community manager >>>> watirpodcast.com - host >>>> testingpodcast.com - audio podcasts on software testing. all of them >>>> viaqa.mobi conference on software testing - organizer >>>> >>>> >>> >>> _______________________________________________ >>> Wtr-development mailing list >>> Wtr-development at rubyforge.org >>> http://rubyforge.org/mailman/listinfo/wtr-development >>> >> >> >> >> -- >> Bret Pettichord >> Director, Watir Project, www.watir.com >> >> Blog, www.testingwithvision.com >> Twitter, www.twitter.com/bpettichord >> >> >> _______________________________________________ >> Wtr-development mailing list >> Wtr-development at rubyforge.org >> http://rubyforge.org/mailman/listinfo/wtr-development >> > > -- Bret Pettichord Director, Watir Project, www.watir.com Blog, www.testingwithvision.com Twitter, www.twitter.com/bpettichord -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Mon Mar 7 08:34:56 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Mon, 7 Mar 2011 14:34:56 +0100 Subject: [Wtr-development] Donate to Watir project via Flattr Message-ID: [image: Flattr logo] Andreas Tolf Tolfsen (of OperaWatirfame) suggested that we add Flattr donations to our web site. >From their about page: Flattr is the worlds first social micro-payment system. In short, you create an account, add to your account at least 2 euroseach month (about 2.80 usd at the moment), and select one or more *things* (official term). Your 2 euros (or more, if you like) will split among the *things* you have *flattered* (again, official term). Flattr is used by NoScript , Debian Package Manager ? dpkg, W3C Validator , phpMyAdmin, GNU wget ? You will find our Flattr donation button just above our Pledgie donation button at the sidebar. At the moment we have 2 *flattrs* (not sure if this is official term). We have to pay 2 euros each month to keep our account alive, so we hope we will get at least that much. I promise we will not spend all of the money on beer. [image: :)] Original post: http://watir.com/2011/03/07/donate-to-watir-project-via-flattr/ ?eljko -- watir.com - community manager watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them viaqa.mobi conference on software testing - organizer -------------- next part -------------- An HTML attachment was scrubbed... URL: From watirjira at gmail.com Mon Mar 7 16:09:20 2011 From: watirjira at gmail.com (=?UTF-8?Q?Fabr=C3=ADcio_Ferrari_de_Campos_=28JIRA=29?=) Date: Mon, 7 Mar 2011 15:09:20 -0600 (CST) Subject: [Wtr-development] [JIRA] Created: (WTR-473) It's no possible to add Watir in Rdoc.info Message-ID: <3156257.1426.1299532160660.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> It's no possible to add Watir in Rdoc.info ------------------------------------------ Key: WTR-473 URL: http://jira.openqa.org/browse/WTR-473 Project: Watir Issue Type: Bug Components: Documentation Affects Versions: 1.7.1 Environment: The issue occurs with Rdoc.info (http://rdoc.info). Reporter: Fabr?cio Ferrari de Campos When I try to add Watir repository (git://github.com/bret/watir.git) in http://rdoc.info. The below error occurs: "Invalid git repository or URL" -- 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 Mar 7 16:29:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Mon, 7 Mar 2011 15:29:20 -0600 (CST) Subject: [Wtr-development] [JIRA] Closed: (WTR-473) It's no possible to add Watir in Rdoc.info In-Reply-To: <3156257.1426.1299532160660.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <32261591.1428.1299533360824.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-473?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jarmo Pertman closed WTR-473. ----------------------------- Resolution: Fixed Fix Version/s: Outside Project I'm not sure that this is a problem with Watir. I guess you should contact the maintainer of rdoc.info instead somehow. You can see the documentation for Watir gems though. Here is the doc for 1.8.0 (latest one) for example http://rdoc.info/gems/watir/1.8.0/frames Closing this issue. > It's no possible to add Watir in Rdoc.info > ------------------------------------------ > > Key: WTR-473 > URL: http://jira.openqa.org/browse/WTR-473 > Project: Watir > Issue Type: Bug > Components: Documentation > Affects Versions: 1.7.1 > Environment: The issue occurs with Rdoc.info (http://rdoc.info). > Reporter: Fabr?cio Ferrari de Campos > Fix For: Outside Project > > > When I try to add Watir repository (git://github.com/bret/watir.git) in http://rdoc.info. The below error occurs: > "Invalid git repository or URL" -- 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 Mar 7 16:38:20 2011 From: watirjira at gmail.com (=?UTF-8?Q?Fabr=C3=ADcio_Ferrari_de_Campos_=28JIRA=29?=) Date: Mon, 7 Mar 2011 15:38:20 -0600 (CST) Subject: [Wtr-development] [JIRA] Commented: (WTR-473) It's no possible to add Watir in Rdoc.info In-Reply-To: <3156257.1426.1299532160660.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <1905412.1430.1299533900110.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-473?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20137#action_20137 ] Fabr?cio Ferrari de Campos commented on WTR-473: ------------------------------------------------ Nice Jarmo! I hadn't found the Watir documentation in rdoc.info. Thanks! > It's no possible to add Watir in Rdoc.info > ------------------------------------------ > > Key: WTR-473 > URL: http://jira.openqa.org/browse/WTR-473 > Project: Watir > Issue Type: Bug > Components: Documentation > Affects Versions: 1.7.1 > Environment: The issue occurs with Rdoc.info (http://rdoc.info). > Reporter: Fabr?cio Ferrari de Campos > Fix For: Outside Project > > > When I try to add Watir repository (git://github.com/bret/watir.git) in http://rdoc.info. The below error occurs: > "Invalid git repository or URL" -- 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 alister.scott at gmail.com Mon Mar 7 23:56:30 2011 From: alister.scott at gmail.com (Alister Scott) Date: Tue, 8 Mar 2011 14:56:30 +1000 Subject: [Wtr-development] Watir Day 2011 Speakers Announced Message-ID: The speakers have been announced for Watir Day: http://watir.com/2011/03/08/watir-day-2011-speakers-announced/ http://watir.com/watir-day/speakers/ Cheers, Alister Scott Brisbane, Australia Watir Web Master: http://watir.com Blog: http://watirmelon.com LinkedIn: http://www.linkedin.com/in/alisterscott "There are two ways to get enough: One is to continue to accumulate more and more. The other is to desire less." *~ G. K. Chesterton* -------------- next part -------------- An HTML attachment was scrubbed... URL: From doodle.m at gmail.com Tue Mar 8 05:33:15 2011 From: doodle.m at gmail.com (Alastair Montgomery) Date: Tue, 8 Mar 2011 02:33:15 -0800 (PST) Subject: [Wtr-development] Donate to Watir project via Flattr In-Reply-To: Message-ID: <31323024.1079.1299580395719.JavaMail.geo-discussion-forums@yqfy10> I remember reading about Flattr a while back when it was launched, I thought it was a good idea and promptly forgot about it. Thanks for the reminder, I've setup an account and click on the WATIR button and have started submitting my own content as well. -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Wed Mar 9 04:32:23 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Wed, 9 Mar 2011 10:32:23 +0100 Subject: [Wtr-development] [wtr-general] Re: Donate to Watir project via Flattr In-Reply-To: <31323024.1079.1299580395719.JavaMail.geo-discussion-forums@yqfy10> References: <31323024.1079.1299580395719.JavaMail.geo-discussion-forums@yqfy10> Message-ID: On Tue, Mar 8, 2011 at 11:33 AM, Alastair Montgomery wrote: > I remember reading about Flattr a while back when it was launched, I thought it was a good idea and promptly forgot about it. It is good idea, we will see if it works for us. > Thanks for the reminder, I've setup an account and click on the WATIR button and have started submitting my own content as well. Thanks, now we have 3 flattrs. :) ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Mon Mar 14 20:12:37 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 15 Mar 2011 01:12:37 +0100 Subject: [Wtr-development] Watir Book Message-ID: Hi, I have started writing a book on Watir. My family has agreed that I can work on the book for about 8 hours almost every Saturday. The source (markdown) will always be free at Github[1] and I plan to sell the pdf for $9. I know I will not get rich by writing a book on Watir, but some money would be nice. Version 0.1.1 of the pdf is available now[2], for free. If you think there needs to be a book on Watir, and you think I am the right person to write it, feel free to buy the book now[3]. You will get all updates to the book for free. (Well, version 0.1.1 can be downloaded for free anyway.) I promise I will not take the money, spend it on beer and never write the book. :) If I see I will not finish the book, I will return the money. Also, if you buy the book and you do not like it, I will return the money. If you like the idea, but do not have $9, feel free to send any amount to zeljko.filipin at gmail.com via Paypal. You can also donate to the book via Flattr[4]. I appreciate any amount. ?eljko -- [1] https://github.com/zeljkofilipin/watirbook [2] https://github.com/zeljkofilipin/watirbook/downloads [3] https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WVJATC56MJS3N [4] https://flattr.com/thing/147956/Watir-Book -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Tue Mar 15 04:48:12 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 15 Mar 2011 09:48:12 +0100 Subject: [Wtr-development] Watir Book In-Reply-To: References: Message-ID: I forgot to say this in the previous e-mail. Anybody can suggest formats I should convert the book to (currently only pdf, but almost anything is possible) and which chapter to write next. Of course, if you buy the book and then suggest a format/chapter, your vote will count more. :) The next chapter will probably be installation, since I see a lot of people have problems with it. The next format will probably be epub. If you are interested in the book, please join Google group, so we do not spam regular groups. http://groups.google.com/group/watirbook ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Tue Mar 15 07:57:42 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Tue, 15 Mar 2011 12:57:42 +0100 Subject: [Wtr-development] [wtr-general] Re: Watir Book In-Reply-To: <17037807.460.1300189573173.JavaMail.geo-discussion-forums@yqdm5> References: <17037807.460.1300189573173.JavaMail.geo-discussion-forums@yqdm5> Message-ID: On Tue, Mar 15, 2011 at 12:46 PM, Alastair Montgomery wrote: > MOBI and EPUB formats should cover all current eReaders :) epub is uploaded :) https://github.com/zeljkofilipin/watirbook/downloads ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From doodle.m at gmail.com Tue Mar 15 07:46:13 2011 From: doodle.m at gmail.com (Alastair Montgomery) Date: Tue, 15 Mar 2011 04:46:13 -0700 (PDT) Subject: [Wtr-development] Watir Book In-Reply-To: Message-ID: <17037807.460.1300189573173.JavaMail.geo-discussion-forums@yqdm5> MOBI and EPUB formats should cover all current eReaders :) -------------- next part -------------- An HTML attachment was scrubbed... URL: From tmsk19 at gmail.com Tue Mar 15 07:53:33 2011 From: tmsk19 at gmail.com (Shiv) Date: Tue, 15 Mar 2011 17:23:33 +0530 Subject: [Wtr-development] [wtr-general] Watir Book In-Reply-To: References: Message-ID: Congrats...its a great initiative good luck, shiv On Tue, Mar 15, 2011 at 5:42 AM, ?eljko Filipin wrote: > Hi, > > I have started writing a book on Watir. My family has agreed that I can work > on the book for about 8 hours almost every Saturday. > > The source (markdown) will always be free at Github[1] and I plan to sell > the pdf for $9. I know I will not get rich by writing a book on Watir, but > some money would be nice. > > Version 0.1.1 of the pdf is available now[2], for free. > > If you think there needs to be a book on Watir, and you think I am the right > person to write it, feel free to buy the book now[3]. You will get all > updates to the book for free. (Well, version 0.1.1 can be downloaded for > free anyway.) > > I promise I will not take the money, spend it on beer and never write the > book. :) > > If I see I will not finish the book, I will return the money. Also, if you > buy the book and you do not like it, I will return the money. > > If you like the idea, but do not have $9, feel free to send any amount to > zeljko.filipin at gmail.com via Paypal. You can also donate to the book via > Flattr[4]. I appreciate any amount. > > ?eljko > -- > [1] https://github.com/zeljkofilipin/watirbook > [2] https://github.com/zeljkofilipin/watirbook/downloads > [3] > https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=WVJATC56MJS3N > [4] https://flattr.com/thing/147956/Watir-Book > > -- > Before posting, please read http://watir.com/support. In short: search > before you ask, be nice. > > watir-general at googlegroups.com > http://groups.google.com/group/watir-general > watir-general+unsubscribe at googlegroups.com > From jarmo.p at gmail.com Tue Mar 15 09:28:33 2011 From: jarmo.p at gmail.com (Jarmo) Date: Tue, 15 Mar 2011 15:28:33 +0200 Subject: [Wtr-development] [wtr-general] Re: Watir Book In-Reply-To: References: <17037807.460.1300189573173.JavaMail.geo-discussion-forums@yqdm5> Message-ID: Nice initiative and idea by the way :) It's always good to have a books for nice frameworks like Watir as long as it stays up to date :) I'm not going to buy it since i don't see any need for it, but i could be a beta tester or something :) Jarmo On Tue, Mar 15, 2011 at 1:57 PM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > On Tue, Mar 15, 2011 at 12:46 PM, Alastair Montgomery > wrote: > > MOBI and EPUB formats should cover all current eReaders :) > > epub is uploaded :) > > > https://github.com/zeljkofilipin/watirbook/downloads > > ?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.filipin at wa-research.ch Wed Mar 16 09:45:46 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Wed, 16 Mar 2011 14:45:46 +0100 Subject: [Wtr-development] viaqa Watir days Message-ID: Hi, This mail is sent to viaqa Google group[1], cc wtr-development and watir-general, and bcc to all members of Watir team[2]. Andreas has recently asked me what is new with Watir conference in Zagreb, so I have figured out that probably I did not communicate our progress efficiently. Bret will be in Europe in the middle of June, and he said he would like us to have a small Watir conference in Zagreb, Croatia (where I live). Since I am already one of the organizers of viaqa[3] conference on software testing, we have decided to add two days to the conference and call it viaqa Watir days[4]. Dates are June 15th and 16th 2011. (viaqa is on June 14th.) We have a venue and we are accepting talks[5]. If you are interested in coming, please let me know. I would prefer if replies are sent to viaqa Google group. Looking forward to seeing you at Selenium Conference and in Zagreb! :) ?eljko -- [1] http://groups.google.com/group/viaqa [2] http://watir.com/team/ [3] http://viaqa.mobi/ [4] http://viaqa.mobi/watir-days/ [5] http://viaqa.mobi/talk-proposals/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From watirjira at gmail.com Wed Mar 16 15:53:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Wed, 16 Mar 2011 14:53:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Resolved: (WTR-43) Add new frames methods Message-ID: <16622345.1464.1300305200970.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-43?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jarmo Pertman resolved WTR-43. ------------------------------ Resolution: Fixed https://github.com/bret/watir/commit/52ee280e7d9d472c19f5399df1fd4bd37958c8ac > Add new frames methods > ---------------------- > > Key: WTR-43 > URL: http://jira.openqa.org/browse/WTR-43 > Project: Watir > Issue Type: Improvement > Components: Frame > Affects Versions: 1.5.4 > Reporter: Charley Baker > Fix For: Soon > > > Exists method should be useful > ie.frame(:name, 'foo').exists? > adding src as a way of finding frames should also be useful > ie.frame(:src, /foo/).exists? > Iterators for frames would make it more compatible with the rest of the api > ie.frames.each do |f| > Originally reported on Rubyforge: http://rubyforge.org/tracker/index.php?func=detail&aid=1860&group_id=104&atid=1999 -- 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 Mar 16 15:53:21 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Wed, 16 Mar 2011 14:53:21 -0500 (CDT) Subject: [Wtr-development] [JIRA] Closed: (WTR-43) Add new frames methods Message-ID: <13631489.1467.1300305201041.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-43?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jarmo Pertman closed WTR-43. ---------------------------- > Add new frames methods > ---------------------- > > Key: WTR-43 > URL: http://jira.openqa.org/browse/WTR-43 > Project: Watir > Issue Type: Improvement > Components: Frame > Affects Versions: 1.5.4 > Reporter: Charley Baker > Fix For: Soon > > > Exists method should be useful > ie.frame(:name, 'foo').exists? > adding src as a way of finding frames should also be useful > ie.frame(:src, /foo/).exists? > Iterators for frames would make it more compatible with the rest of the api > ie.frames.each do |f| > Originally reported on Rubyforge: http://rubyforge.org/tracker/index.php?func=detail&aid=1860&group_id=104&atid=1999 -- 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 Mar 16 15:53:21 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Wed, 16 Mar 2011 14:53:21 -0500 (CDT) Subject: [Wtr-development] [JIRA] Closed: (WTR-281) add exists? for frames Message-ID: <25755882.1471.1300305201332.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-281?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jarmo Pertman closed WTR-281. ----------------------------- Resolution: Fixed https://github.com/bret/watir/commit/52ee280e7d9d472c19f5399df1fd4bd37958c8ac > add exists? for frames > ---------------------- > > Key: WTR-281 > URL: http://jira.openqa.org/browse/WTR-281 > Project: Watir > Issue Type: New Feature > Components: Frame > Affects Versions: 1.6.2 > Environment: x > Reporter: Charley Baker > Assignee: Bret Pettichord > Fix For: Soon > > > This has come up in the mailing list a few times. Monkey patch from MHwee: > Michael Hwee > to watir-general > > frame does not support exists?(). > However, you can *monkey-patch* as followed. > module Watir > class Frame > alias_method :_locate, :locate > def locate > begin > return _locate > rescue > return nil > end > end > def exists? > return @o != nil > end > end > end > Michael -- 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 Mar 16 23:39:20 2011 From: watirjira at gmail.com (Eric Kolve (JIRA)) Date: Wed, 16 Mar 2011 22:39:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Created: (WTR-474) Watir and Rails 3.0.X incompatible Message-ID: <32432268.1474.1300333160045.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Watir and Rails 3.0.X incompatible ---------------------------------- Key: WTR-474 URL: http://jira.openqa.org/browse/WTR-474 Project: Watir Issue Type: Bug Components: FireWatir Affects Versions: 1.7.1 Environment: Fedora Core 13, Rails 3.0.5, commonwatir 1.8.0, firewatir 1.8.0 Reporter: Eric Kolve When creating a new Rails 3.0 project and including firewatir and commonwatir in the list of gems an error is thrown when accessing a controller. Here are the repro steps: gem install rails gem install firewatir gem install commonwatir > rails new testrails > cd testrails > echo 'gem "commonwatir"' >> Gemfile > echo 'gem "firewatir"' >> Gemfile > bundle install --deployment > rails generate controller Pages home > rails server >From a web browser request the page http://localhost.local:3000/pages/home The following error is thrown: NoMethodError: undefined method `cache' for :active_support:Symbol I tracked this down to this file: commonwatir-1.8.0/lib/watir/core_ext.rb def underscore gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') end The underscore method is added/redefined in the core String class, which Rails also redefines using ActiveSupport::Inflector, but the underscore methods are incompatible. If that method is commented out, the above error is no longer thrown. I'm not sure of a good solution to this. Either rename the method and refactor all the watir code or depend ActiveSupport. -- 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 Mar 17 03:44:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Thu, 17 Mar 2011 02:44:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-474) Watir and Rails 3.0.X incompatible In-Reply-To: <32432268.1474.1300333160045.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <9057045.1478.1300347860575.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20142#action_20142 ] Jarmo Pertman commented on WTR-474: ----------------------------------- Adding ActiveSupport dependency is definitely not a solution. We just got rid of it :) > Watir and Rails 3.0.X incompatible > ---------------------------------- > > Key: WTR-474 > URL: http://jira.openqa.org/browse/WTR-474 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.7.1 > Environment: Fedora Core 13, Rails 3.0.5, commonwatir 1.8.0, firewatir 1.8.0 > Reporter: Eric Kolve > > When creating a new Rails 3.0 project and including firewatir and commonwatir in the list of gems an error is thrown when accessing a controller. Here are the repro steps: > gem install rails > gem install firewatir > gem install commonwatir > > rails new testrails > > cd testrails > > echo 'gem "commonwatir"' >> Gemfile > > echo 'gem "firewatir"' >> Gemfile > > bundle install --deployment > > rails generate controller Pages home > > rails server > From a web browser request the page http://localhost.local:3000/pages/home > The following error is thrown: NoMethodError: undefined method `cache' for :active_support:Symbol > I tracked this down to this file: > commonwatir-1.8.0/lib/watir/core_ext.rb > def underscore > gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') > end > The underscore method is added/redefined in the core String class, which Rails also redefines using ActiveSupport::Inflector, but the underscore methods are incompatible. If that method is commented out, the above error is no longer thrown. I'm not sure of a good solution to this. Either rename the method and refactor all the watir code or depend ActiveSupport. -- 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 Thu Mar 17 04:56:18 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Thu, 17 Mar 2011 09:56:18 +0100 Subject: [Wtr-development] [wtr-general] Re: Watir Book In-Reply-To: References: <17037807.460.1300189573173.JavaMail.geo-discussion-forums@yqdm5> Message-ID: On Tue, Mar 15, 2011 at 2:28 PM, Jarmo wrote: > Nice initiative and idea by the way :) Thanks. I had the idea for a long time, but no time. :) > It's always good to have a books for nice frameworks like Watir as long as it stays up to date :) The plan is to update the book regularly. > I'm not going to buy it since i don't see any need for it Well, nobody does not "need" to buy the book, since the markdown source is available for free (and github automatically converts markdown to html so I get the web site for free). Buying the pdf or epub is just a way to support my work. Of course, you and other code contributors are already supporting my work. With no active development, there would not be a need for the book. > but i could be a beta tester or something :) Please join watirbook google group, further discussion about the book will be there. ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From watirjira at gmail.com Thu Mar 17 06:23:20 2011 From: watirjira at gmail.com (Ivan Kabluchkov (JIRA)) Date: Thu, 17 Mar 2011 05:23:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-197) IE7 - focus goes to address bar after certain actions, and .focus doesn't work when focus is in address bar Message-ID: <10592481.1481.1300357400906.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-197?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20143#action_20143 ] Ivan Kabluchkov commented on WTR-197: ------------------------------------- I found one more solution for remove focus from address bar. After each using _goto_ method I insert following sting: {code} ie.goto('http://testsite.test') ie.ie.document.focus {code} but one of problem (or not) - window of IE brings up to foreground > IE7 - focus goes to address bar after certain actions, and .focus doesn't work when focus is in address bar > ----------------------------------------------------------------------------------------------------------- > > Key: WTR-197 > URL: http://jira.openqa.org/browse/WTR-197 > Project: Watir > Issue Type: Bug > Components: Inputs > Affects Versions: 1.5.3 > Environment: IE7 > Windows XP SP2 and Windows 2003 Server SP1 > Watir 1.5.3 - 1.5.6 > Ruby 1.8.5 > Reporter: sCrIpT mUnKeE > Priority: Major > Fix For: Soon > > > In the example below I have demonstrated that when > you use the focus method on a text_field in IE7, the actually browser > focus is not set. The field does not receive the inputed text for > "send_keys" and the "Enter" key is not registered with the "search" > button. > I first noticed this issue with the web application I am testing. Our > web application contains iFrame, but I don't think this is an issue, > and I have noticed that when the page starts the address bar of IE 7 > never looses focus. It start active not matter what interactions I do > with the browser. > IE 7 Focus Example: > # starting the test > require 'watir' > ie = Watir::IE.start() > ie.goto("http://flickr.com") > # focusing the text field, because the web site does not set focus > automatically > ie.div(:id, 'featured-search').text_field(:index, 1).focus() > # adding text to the search field > ie.send_keys("{self}") > #ie.div(:id, 'featured-search').text_field(:index, 1).set("self") # > This also failes > # sending an Enter key to execute the search > ie.send_keys("{ENTER}") -- 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 Mar 21 16:53:20 2011 From: watirjira at gmail.com (Bret Pettichord (JIRA)) Date: Mon, 21 Mar 2011 15:53:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-474) Watir and Rails 3.0.X incompatible In-Reply-To: <32432268.1474.1300333160045.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <12404806.1519.1300740800638.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20145#action_20145 ] Bret Pettichord commented on WTR-474: ------------------------------------- Maybe we could add a guard to our definition of String::underscore, and not define it if it is already defined? > Watir and Rails 3.0.X incompatible > ---------------------------------- > > Key: WTR-474 > URL: http://jira.openqa.org/browse/WTR-474 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.7.1 > Environment: Fedora Core 13, Rails 3.0.5, commonwatir 1.8.0, firewatir 1.8.0 > Reporter: Eric Kolve > > When creating a new Rails 3.0 project and including firewatir and commonwatir in the list of gems an error is thrown when accessing a controller. Here are the repro steps: > gem install rails > gem install firewatir > gem install commonwatir > > rails new testrails > > cd testrails > > echo 'gem "commonwatir"' >> Gemfile > > echo 'gem "firewatir"' >> Gemfile > > bundle install --deployment > > rails generate controller Pages home > > rails server > From a web browser request the page http://localhost.local:3000/pages/home > The following error is thrown: NoMethodError: undefined method `cache' for :active_support:Symbol > I tracked this down to this file: > commonwatir-1.8.0/lib/watir/core_ext.rb > def underscore > gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') > end > The underscore method is added/redefined in the core String class, which Rails also redefines using ActiveSupport::Inflector, but the underscore methods are incompatible. If that method is commented out, the above error is no longer thrown. I'm not sure of a good solution to this. Either rename the method and refactor all the watir code or depend ActiveSupport. -- 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 Mar 21 17:26:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Mon, 21 Mar 2011 16:26:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-474) Watir and Rails 3.0.X incompatible In-Reply-To: <32432268.1474.1300333160045.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <10001417.1521.1300742780630.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20146#action_20146 ] Jarmo Pertman commented on WTR-474: ----------------------------------- This would work if that other already-defined #underscore method is working the same as Watir's #underscore... > Watir and Rails 3.0.X incompatible > ---------------------------------- > > Key: WTR-474 > URL: http://jira.openqa.org/browse/WTR-474 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.7.1 > Environment: Fedora Core 13, Rails 3.0.5, commonwatir 1.8.0, firewatir 1.8.0 > Reporter: Eric Kolve > > When creating a new Rails 3.0 project and including firewatir and commonwatir in the list of gems an error is thrown when accessing a controller. Here are the repro steps: > gem install rails > gem install firewatir > gem install commonwatir > > rails new testrails > > cd testrails > > echo 'gem "commonwatir"' >> Gemfile > > echo 'gem "firewatir"' >> Gemfile > > bundle install --deployment > > rails generate controller Pages home > > rails server > From a web browser request the page http://localhost.local:3000/pages/home > The following error is thrown: NoMethodError: undefined method `cache' for :active_support:Symbol > I tracked this down to this file: > commonwatir-1.8.0/lib/watir/core_ext.rb > def underscore > gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') > end > The underscore method is added/redefined in the core String class, which Rails also redefines using ActiveSupport::Inflector, but the underscore methods are incompatible. If that method is commented out, the above error is no longer thrown. I'm not sure of a good solution to this. Either rename the method and refactor all the watir code or depend ActiveSupport. -- 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 Mar 21 18:49:20 2011 From: watirjira at gmail.com (Bret Pettichord (JIRA)) Date: Mon, 21 Mar 2011 17:49:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-474) Watir and Rails 3.0.X incompatible In-Reply-To: <32432268.1474.1300333160045.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <7551093.1523.1300747760580.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20147#action_20147 ] Bret Pettichord commented on WTR-474: ------------------------------------- My understanding is that we (i.e. me) originally used active support, but that dependency caused problems, so we (i.e. someone else) removed it and instead defined the only method we were using from that library ourselves. This is that method. So by design, it is the same. > Watir and Rails 3.0.X incompatible > ---------------------------------- > > Key: WTR-474 > URL: http://jira.openqa.org/browse/WTR-474 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.7.1 > Environment: Fedora Core 13, Rails 3.0.5, commonwatir 1.8.0, firewatir 1.8.0 > Reporter: Eric Kolve > > When creating a new Rails 3.0 project and including firewatir and commonwatir in the list of gems an error is thrown when accessing a controller. Here are the repro steps: > gem install rails > gem install firewatir > gem install commonwatir > > rails new testrails > > cd testrails > > echo 'gem "commonwatir"' >> Gemfile > > echo 'gem "firewatir"' >> Gemfile > > bundle install --deployment > > rails generate controller Pages home > > rails server > From a web browser request the page http://localhost.local:3000/pages/home > The following error is thrown: NoMethodError: undefined method `cache' for :active_support:Symbol > I tracked this down to this file: > commonwatir-1.8.0/lib/watir/core_ext.rb > def underscore > gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') > end > The underscore method is added/redefined in the core String class, which Rails also redefines using ActiveSupport::Inflector, but the underscore methods are incompatible. If that method is commented out, the above error is no longer thrown. I'm not sure of a good solution to this. Either rename the method and refactor all the watir code or depend ActiveSupport. -- 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 Mar 21 21:05:20 2011 From: watirjira at gmail.com (Jari Bakken (JIRA)) Date: Mon, 21 Mar 2011 20:05:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-474) Watir and Rails 3.0.X incompatible In-Reply-To: <32432268.1474.1300333160045.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <11752435.1525.1300755920785.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20148#action_20148 ] Jari Bakken commented on WTR-474: --------------------------------- But anyone can define an incompatible String#underscore before loading Watir. I'd look into where it's used in the Watir code base, and either add a #underscore(str) helper to that object, or if it's used in multiple objects, add Watir::Util.underscore(str) or similar. > Watir and Rails 3.0.X incompatible > ---------------------------------- > > Key: WTR-474 > URL: http://jira.openqa.org/browse/WTR-474 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.7.1 > Environment: Fedora Core 13, Rails 3.0.5, commonwatir 1.8.0, firewatir 1.8.0 > Reporter: Eric Kolve > > When creating a new Rails 3.0 project and including firewatir and commonwatir in the list of gems an error is thrown when accessing a controller. Here are the repro steps: > gem install rails > gem install firewatir > gem install commonwatir > > rails new testrails > > cd testrails > > echo 'gem "commonwatir"' >> Gemfile > > echo 'gem "firewatir"' >> Gemfile > > bundle install --deployment > > rails generate controller Pages home > > rails server > From a web browser request the page http://localhost.local:3000/pages/home > The following error is thrown: NoMethodError: undefined method `cache' for :active_support:Symbol > I tracked this down to this file: > commonwatir-1.8.0/lib/watir/core_ext.rb > def underscore > gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') > end > The underscore method is added/redefined in the core String class, which Rails also redefines using ActiveSupport::Inflector, but the underscore methods are incompatible. If that method is commented out, the above error is no longer thrown. I'm not sure of a good solution to this. Either rename the method and refactor all the watir code or depend ActiveSupport. -- 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 Mar 22 03:16:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Tue, 22 Mar 2011 02:16:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-474) Watir and Rails 3.0.X incompatible In-Reply-To: <32432268.1474.1300333160045.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <5543012.1528.1300778180685.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-474?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20149#action_20149 ] Jarmo Pertman commented on WTR-474: ----------------------------------- I agree with Jari that this would be the most sane thing to do. I'll make the needed changes soon if no-one else beats me with that. > Watir and Rails 3.0.X incompatible > ---------------------------------- > > Key: WTR-474 > URL: http://jira.openqa.org/browse/WTR-474 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.7.1 > Environment: Fedora Core 13, Rails 3.0.5, commonwatir 1.8.0, firewatir 1.8.0 > Reporter: Eric Kolve > > When creating a new Rails 3.0 project and including firewatir and commonwatir in the list of gems an error is thrown when accessing a controller. Here are the repro steps: > gem install rails > gem install firewatir > gem install commonwatir > > rails new testrails > > cd testrails > > echo 'gem "commonwatir"' >> Gemfile > > echo 'gem "firewatir"' >> Gemfile > > bundle install --deployment > > rails generate controller Pages home > > rails server > From a web browser request the page http://localhost.local:3000/pages/home > The following error is thrown: NoMethodError: undefined method `cache' for :active_support:Symbol > I tracked this down to this file: > commonwatir-1.8.0/lib/watir/core_ext.rb > def underscore > gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') > end > The underscore method is added/redefined in the core String class, which Rails also redefines using ActiveSupport::Inflector, but the underscore methods are incompatible. If that method is commented out, the above error is no longer thrown. I'm not sure of a good solution to this. Either rename the method and refactor all the watir code or depend ActiveSupport. -- 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 Mar 22 18:11:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Tue, 22 Mar 2011 17:11:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Closed: (WTR-474) Watir and Rails 3.0.X incompatible In-Reply-To: <32432268.1474.1300333160045.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> Message-ID: <14685361.1535.1300831880738.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-474?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jarmo Pertman closed WTR-474. ----------------------------- Resolution: Fixed Fix Version/s: Soon Done - https://github.com/bret/watir/commit/296d54d8facaa3ca8d1b22a1d8530e0305184eb3 > Watir and Rails 3.0.X incompatible > ---------------------------------- > > Key: WTR-474 > URL: http://jira.openqa.org/browse/WTR-474 > Project: Watir > Issue Type: Bug > Components: FireWatir > Affects Versions: 1.7.1 > Environment: Fedora Core 13, Rails 3.0.5, commonwatir 1.8.0, firewatir 1.8.0 > Reporter: Eric Kolve > Fix For: Soon > > > When creating a new Rails 3.0 project and including firewatir and commonwatir in the list of gems an error is thrown when accessing a controller. Here are the repro steps: > gem install rails > gem install firewatir > gem install commonwatir > > rails new testrails > > cd testrails > > echo 'gem "commonwatir"' >> Gemfile > > echo 'gem "firewatir"' >> Gemfile > > bundle install --deployment > > rails generate controller Pages home > > rails server > From a web browser request the page http://localhost.local:3000/pages/home > The following error is thrown: NoMethodError: undefined method `cache' for :active_support:Symbol > I tracked this down to this file: > commonwatir-1.8.0/lib/watir/core_ext.rb > def underscore > gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') > end > The underscore method is added/redefined in the core String class, which Rails also redefines using ActiveSupport::Inflector, but the underscore methods are incompatible. If that method is commented out, the above error is no longer thrown. I'm not sure of a good solution to this. Either rename the method and refactor all the watir code or depend ActiveSupport. -- 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 Sat Mar 26 10:49:21 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Sat, 26 Mar 2011 15:49:21 +0100 Subject: [Wtr-development] Watir at Facebook In-Reply-To: References: Message-ID: On Fri, Feb 25, 2011 at 2:11 PM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > watirdotcom, watircom, watirproject are available. I have decided to use https://www.facebook.com/watirproject Feel free to like the page. We are stuck at 43 "likes" for some time now. I have added link to the Facebook page (and a few other Watir links) in the sidebar at watir.com. ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Wed Mar 30 06:42:30 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Wed, 30 Mar 2011 12:42:30 +0200 Subject: [Wtr-development] #42 Andreas Tolf Tolfsen on OperaWatir 1/2 Message-ID: It took us some time to publish it, but #42 is live! http://watirpodcast.com/42-andreas-tolf-tolfsen-on-operawatir-1-2/ The second part is ready and should be published in a few days. ?eljko -- watir.com - community manager watir.com/book - author viaqa.mobi conference on software testing - organizer watirpodcast.com - host testingpodcast.com - audio podcasts on software testing. all of them -------------- next part -------------- An HTML attachment was scrubbed... URL: From bret at pettichord.com Wed Mar 30 14:25:01 2011 From: bret at pettichord.com (Bret Pettichord) Date: Wed, 30 Mar 2011 13:25:01 -0500 Subject: [Wtr-development] Joining the Software Freedom Conservancy Message-ID: I would like to put together an application to join the Software Freedom Conservancy . They have just sent us an application . I plan to discuss this at the Watir Daythis weekend, but would also like to discuss there here with people who may not be able to meet us in San Francisco. Bret -- Bret Pettichord Director, Watir Project, www.watir.com Blog, www.testingwithvision.com Twitter, www.twitter.com/bpettichord -------------- next part -------------- An HTML attachment was scrubbed... URL: From jarmo.p at gmail.com Wed Mar 30 15:24:13 2011 From: jarmo.p at gmail.com (Jarmo) Date: Wed, 30 Mar 2011 22:24:13 +0300 Subject: [Wtr-development] Joining the Software Freedom Conservancy In-Reply-To: References: Message-ID: Seems like a good idea :) Jarmo On Wed, Mar 30, 2011 at 9:25 PM, Bret Pettichord wrote: > I would like to put together an application to join the Software Freedom > Conservancy . > > They have just sent us an application > . > > I plan to discuss this at the Watir Daythis weekend, but would also like to discuss there here with people who may > not be able to meet us in San Francisco. > > Bret > > -- > Bret Pettichord > Director, Watir Project, www.watir.com > > Blog, www.testingwithvision.com > Twitter, www.twitter.com/bpettichord > > > _______________________________________________ > 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 Wed Mar 30 17:11:53 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Wed, 30 Mar 2011 23:11:53 +0200 Subject: [Wtr-development] Joining the Software Freedom Conservancy In-Reply-To: References: Message-ID: On Wed, Mar 30, 2011 at 8:25 PM, Bret Pettichord wrote: > I would like to put together an application to join the Software Freedom Conservancy. For those not monitoring Selenium groups/lists, Selenium recently joined Software Freedom Conservancy: http://sfconservancy.org/news/2011/feb/02/selenium-joins/ I have read everything you have linked and followed a few links that looked relevant, and I like the idea. To start the discussion, could you list a few reasons why you would like us to join Software Freedom Conservancy? ?eljko -- watir.com - community manager watir.com/book - author viaqa.mobi conference on software testing - organizer watirpodcast.com - host -------------- next part -------------- An HTML attachment was scrubbed... URL: From watirjira at gmail.com Wed Mar 30 17:14:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Wed, 30 Mar 2011 16:14:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Closed: (WTR-185) Add a new method for "set" - that is similar to "click_no_wait" Message-ID: <33203330.1570.1301519660861.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-185?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jarmo Pertman closed WTR-185. ----------------------------- Resolution: Fixed Added *_no_wait methods with https://github.com/bret/watir/commit/bfedf1c0a857ed0ae1b44246ec6ce41eb3bd49d2 > Add a new method for "set" - that is similar to "click_no_wait" > ---------------------------------------------------------------- > > Key: WTR-185 > URL: http://jira.openqa.org/browse/WTR-185 > Project: Watir > Issue Type: New Feature > Components: HTML Controls > Affects Versions: 1.5.2 > Reporter: Lauren > Priority: Major > Fix For: Soon > > > The command that I need to execute prior to a "Windows Internet > Explorer" window launching is to "set" a radio button. > $browser.radio(:id, "xxxxx").set > I know that when a button is clicked prior to a pop-up window...that a > 'click_no_wait' method is required. Is there something similar for the > 'set' function? I tried, "set_no_wait" and received an: "undefined > method 'set_no_wait'" > Expected: "set_no_wait" (or similar method name) > Actual: No such method or equivalent. -- 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 Mar 30 17:14:20 2011 From: watirjira at gmail.com (Jarmo Pertman (JIRA)) Date: Wed, 30 Mar 2011 16:14:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Closed: (WTR-144) Needs fire_event_no_wait() method Message-ID: <10357076.1568.1301519660688.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-144?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jarmo Pertman closed WTR-144. ----------------------------- Resolution: Fixed Fix Version/s: (was: Future) Soon Added *_no_wait methods with https://github.com/bret/watir/commit/bfedf1c0a857ed0ae1b44246ec6ce41eb3bd49d2 > Needs fire_event_no_wait() method > --------------------------------- > > Key: WTR-144 > URL: http://jira.openqa.org/browse/WTR-144 > Project: Watir > Issue Type: Improvement > Components: Modal Web Dialog > Reporter: MadNut > Priority: Major > Fix For: Soon > > > fire_event_no_wait is helpful for handling modal dialog, that opens by JS scripts via event. > Here is code for that functionality: > watir.rb: > class Element > ... > def fire_event(event) > fire_event!(event) > @container.wait > end > def fire_event!(event) > assert_enabled > > highlight(:set) > ole_object.fireEvent(event) > highlight(:clear) > end > def fire_event_no_wait(event) > assert_enabled > > highlight(:set) > object = "#{self.class}.new(self, :unique_number, #{self.unique_number})" > @page_container.eval_in_spawned_process(object + ".fire_event!(\"#{event}\")") > highlight(:clear) > end > ... > 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 bret at pettichord.com Thu Mar 31 11:00:39 2011 From: bret at pettichord.com (Bret Pettichord) Date: Thu, 31 Mar 2011 10:00:39 -0500 Subject: [Wtr-development] Joining the Software Freedom Conservancy In-Reply-To: References: Message-ID: 1. I would like to get the Watir project non-profit status in the US. This would make donations from Americans tax-deductible, which is likely to help with fundraising. Also the simple fact that we are a non-profit will add legitimacy. 2. It would provide institutional support for Watir. Today, Watir is a pet project of a number of individuals. We would assign ownership of Watir assets (domain names, repositories, copyrights) to the Conservancy. Today, if one of us were to die or if there were a personal fallout between key contributors, the project could end up in limbo and have difficulty moving forward. Institutionalization would help the long-term security of the project. 3. It would make me feel better about accepting donations. Currently, donations show up in my personal bank account. Instead, we would have an account for the project, and we would have clear rules about how the funds would be spent and who needs to approve expenses. I am currently somewhat uncomfortable having my personal funds mixed up with the Watir project funds. 4. I am eager to try and get significantly increased funding for the project to support ongoing development work. I think this will be easier to solicit and negotiate with larger companies if we have a more formal institutional structure ourselves. We could achieve these goals by joining the conservancy, creating our own nonprofit, or perhaps by finding another umbrella group to sponsor us. Bret On Wed, Mar 30, 2011 at 4:11 PM, ?eljko Filipin < zeljko.filipin at wa-research.ch> wrote: > On Wed, Mar 30, 2011 at 8:25 PM, Bret Pettichord > wrote: > > I would like to put together an application to join the Software Freedom > Conservancy. > > For those not monitoring Selenium groups/lists, Selenium recently joined > Software Freedom Conservancy: > > http://sfconservancy.org/news/2011/feb/02/selenium-joins/ > > I have read everything you have linked and followed a few links that looked > relevant, and I like the idea. > > To start the discussion, could you list a few reasons why you would like us > to join Software Freedom Conservancy? > > ?eljko > -- > watir.com - community manager > watir.com/book - author > viaqa.mobi conference on software testing - organizer > watirpodcast.com - host > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > -- Bret Pettichord Director, Watir Project, www.watir.com Blog, www.testingwithvision.com Twitter, www.twitter.com/bpettichord -------------- next part -------------- An HTML attachment was scrubbed... URL: From zeljko.filipin at wa-research.ch Thu Mar 31 11:07:24 2011 From: zeljko.filipin at wa-research.ch (=?UTF-8?Q?=C5=BDeljko_Filipin?=) Date: Thu, 31 Mar 2011 17:07:24 +0200 Subject: [Wtr-development] Joining the Software Freedom Conservancy In-Reply-To: References: Message-ID: On Thu, Mar 31, 2011 at 5:00 PM, Bret Pettichord wrote: > We could achieve these goals by joining the conservancy, creating our own nonprofit, or perhaps by finding another umbrella group to sponsor us. All good points. My vote goes to joining the conservancy. ?eljko -------------- next part -------------- An HTML attachment was scrubbed... URL: From jari.bakken at gmail.com Thu Mar 31 14:28:10 2011 From: jari.bakken at gmail.com (Jari Bakken) Date: Thu, 31 Mar 2011 11:28:10 -0700 Subject: [Wtr-development] Joining the Software Freedom Conservancy In-Reply-To: References: Message-ID: +1 On Thu, Mar 31, 2011 at 8:07 AM, ?eljko Filipin wrote: > On Thu, Mar 31, 2011 at 5:00 PM, Bret Pettichord > wrote: >> We could achieve these goals by joining the conservancy, creating our own >> nonprofit, or perhaps by finding another umbrella group to sponsor us. > > All good points. My vote goes to joining the conservancy. > > ?eljko > > _______________________________________________ > Wtr-development mailing list > Wtr-development at rubyforge.org > http://rubyforge.org/mailman/listinfo/wtr-development > From paul.rogers at shaw.ca Thu Mar 31 15:42:32 2011 From: paul.rogers at shaw.ca (Paul Rogers) Date: Thu, 31 Mar 2011 12:42:32 -0700 Subject: [Wtr-development] Joining the Software Freedom Conservancy In-Reply-To: References: Message-ID: +1 for me too, and would be happy to sign the watir.com over to the conservancy Paul On Thu, Mar 31, 2011 at 11:28 AM, Jari Bakken wrote: > +1 > > On Thu, Mar 31, 2011 at 8:07 AM, ?eljko Filipin > wrote: >> On Thu, Mar 31, 2011 at 5:00 PM, Bret Pettichord >> wrote: >>> We could achieve these goals by joining the conservancy, creating our own >>> nonprofit, or perhaps by finding another umbrella group to sponsor us. >> >> All good points. My vote goes to joining the conservancy. >> >> ?eljko >> >> _______________________________________________ >> 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 From watirjira at gmail.com Thu Mar 31 17:42:21 2011 From: watirjira at gmail.com (Bret Pettichord (JIRA)) Date: Thu, 31 Mar 2011 16:42:21 -0500 (CDT) Subject: [Wtr-development] [JIRA] Commented: (WTR-185) Add a new method for "set" - that is similar to "click_no_wait" Message-ID: <1624441.1574.1301607741036.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-185?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=20156#action_20156 ] Bret Pettichord commented on WTR-185: ------------------------------------- The changes in this commit do not seem to be related to this issue. > Add a new method for "set" - that is similar to "click_no_wait" > ---------------------------------------------------------------- > > Key: WTR-185 > URL: http://jira.openqa.org/browse/WTR-185 > Project: Watir > Issue Type: New Feature > Components: HTML Controls > Affects Versions: 1.5.2 > Reporter: Lauren > Priority: Major > Fix For: Soon > > > The command that I need to execute prior to a "Windows Internet > Explorer" window launching is to "set" a radio button. > $browser.radio(:id, "xxxxx").set > I know that when a button is clicked prior to a pop-up window...that a > 'click_no_wait' method is required. Is there something similar for the > 'set' function? I tried, "set_no_wait" and received an: "undefined > method 'set_no_wait'" > Expected: "set_no_wait" (or similar method name) > Actual: No such method or equivalent. -- 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 Mar 31 17:44:20 2011 From: watirjira at gmail.com (Bret Pettichord (JIRA)) Date: Thu, 31 Mar 2011 16:44:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Reopened: (WTR-185) Add a new method for "set" - that is similar to "click_no_wait" Message-ID: <9795922.1576.1301607860030.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-185?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bret Pettichord reopened WTR-185: --------------------------------- > Add a new method for "set" - that is similar to "click_no_wait" > ---------------------------------------------------------------- > > Key: WTR-185 > URL: http://jira.openqa.org/browse/WTR-185 > Project: Watir > Issue Type: New Feature > Components: HTML Controls > Affects Versions: 1.5.2 > Reporter: Lauren > Priority: Major > Fix For: Soon > > > The command that I need to execute prior to a "Windows Internet > Explorer" window launching is to "set" a radio button. > $browser.radio(:id, "xxxxx").set > I know that when a button is clicked prior to a pop-up window...that a > 'click_no_wait' method is required. Is there something similar for the > 'set' function? I tried, "set_no_wait" and received an: "undefined > method 'set_no_wait'" > Expected: "set_no_wait" (or similar method name) > Actual: No such method or equivalent. -- 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 Mar 31 17:44:20 2011 From: watirjira at gmail.com (Bret Pettichord (JIRA)) Date: Thu, 31 Mar 2011 16:44:20 -0500 (CDT) Subject: [Wtr-development] [JIRA] Reopened: (WTR-144) Needs fire_event_no_wait() method Message-ID: <30556166.1578.1301607860117.JavaMail.oqa-j2ee@openqa01.managed.contegix.com> [ http://jira.openqa.org/browse/WTR-144?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Bret Pettichord reopened WTR-144: --------------------------------- This commit does not seem to be related to this issue. > Needs fire_event_no_wait() method > --------------------------------- > > Key: WTR-144 > URL: http://jira.openqa.org/browse/WTR-144 > Project: Watir > Issue Type: Improvement > Components: Modal Web Dialog > Reporter: MadNut > Priority: Major > Fix For: Soon > > > fire_event_no_wait is helpful for handling modal dialog, that opens by JS scripts via event. > Here is code for that functionality: > watir.rb: > class Element > ... > def fire_event(event) > fire_event!(event) > @container.wait > end > def fire_event!(event) > assert_enabled > > highlight(:set) > ole_object.fireEvent(event) > highlight(:clear) > end > def fire_event_no_wait(event) > assert_enabled > > highlight(:set) > object = "#{self.class}.new(self, :unique_number, #{self.unique_number})" > @page_container.eval_in_spawned_process(object + ".fire_event!(\"#{event}\")") > highlight(:clear) > end > ... > 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