[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 6:23 AM, Alister Scott wrote: > I have looked into many options and can't find a free/cheap > option to host Confluence for watir.com. Amazon EC2 will be at > least US$80 per month (~$1000 per year) A lot of money. Could we ask Atlassian to host our Confluence and Jira?

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 6:23 AM, Alister Scott wrote: > One solution I propose is that we use wordpress.com as a CMS to > host watir.com I have some space on my hosting account so we could watir.com there. We can move watir.com to wordpress.com if the space or bandwidth exceeds my limits. If yo

[wtr-general] Re: WatirCraft LLC is closing

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 5:45 AM, Bret Pettichord wrote: > Pete Dignan and I have decided to shut down WatirCraft LLC. I am really sorry to hear that. Is it polite to ask why? > I will begin working full time for Convio in July. Good luck on your new job. Željko --~--~-~--~~

[wtr-general] Re: Towards migrating to Watir.com

2009-06-04 Thread Željko Filipin
On Thu, Jun 4, 2009 at 4:12 PM, Felipe Knorr Kuhn wrote: > Do you guys have a community/open source project license for the Atlassian apps? Alister will know for sure, but I think we have open source licenses for Jira and Confluence. Željko --~--~-~--~~~---~--~~

[wtr-general] Re: Towards migrating to Watir.com

2009-06-05 Thread Željko Filipin
On Thu, Jun 4, 2009 at 11:36 PM, Chuck van der Linden wrote: > Has Google Code been considered? > also Github? Both Google Code and Github have wiki and bug tracking. The problem with changing software is that somebody would have to enter all data from old software into new software. And there is

[wtr-general] Re: Towards migrating to Watir.com

2009-06-05 Thread Željko Filipin
On Thu, Jun 4, 2009 at 6:23 AM, Alister Scott wrote: > I have looked into many options and can't find a free/cheap > option to host Confluence for watir.com. What do you think Patrick would say if we asked him can watir.com point to http://wiki.openqa.org/display/WTR? We could say at the bottom

[wtr-general] Re: Checking all links on a web page

2009-06-05 Thread Željko Filipin
On Fri, Jun 5, 2009 at 2:33 PM, ash wrote: > What I need is a way of clicking each link on a page to ensure they > don't error. I would do it something like this (not tested): browser.links.each do |link| browser.goto link # check if page is ok browser.back end Željko -- http://watirpodca

[wtr-general] Re: How to send the email by Ruby script?

2009-06-05 Thread Željko Filipin
On Fri, Jun 5, 2009 at 7:24 PM, Wesley Chen wrote: > But do you know how to send an attachment in the email? I think you can do it with Tmail. http://tmail.rubyforge.org/ Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because

[wtr-general] Re: Multiple lines in textarea

2009-06-08 Thread Željko Filipin
Try this: answers.each do |item| ie.textfield(:name, "multiChoiceAnswers").set item end Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this g

[wtr-general] Re: Can't Click Div element

2009-06-08 Thread Željko Filipin
On Mon, Jun 8, 2009 at 1:48 PM, Chethan wrote: > browser.image(:src, /expand/).click > View More Details ... browser.div(:text, "View More Details ...").click Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are su

[wtr-general] Re: Multiple lines in textarea

2009-06-08 Thread Željko Filipin
And what happens if you do this? ie.textfield(:name, "multiChoiceAnswers").set "Answer1\nAnswer2\nAnswer3" Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send em

[wtr-general] Re: Multiple lines in textarea

2009-06-08 Thread Željko Filipin
This should work too: answers = ["answer1\n", "answer2\n", "answer3\n"] ie.textfield(:name, "multiChoiceAnswers").set answers.to_s Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To pos

[wtr-general] Re: Issue with Select List

2009-06-09 Thread Željko Filipin
On Tue, Jun 9, 2009 at 7:49 AM, Pallavi Sharma wrote: > I tried the fire events also but no help. Which events did you fire? Looks like you should fire onChange and/or onfocus. Did you ask a developer how that code works and what events should be fired? Željko -- http://watirpodcast.com/ --~--

[wtr-general] Re: How can we verify whether link is deactivated?

2009-06-09 Thread Željko Filipin
On Tue, Jun 9, 2009 at 8:22 AM, Durgesh Nadkarni wrote: > I want to verify that a particular link is deactivated after certain event. How does the link look when it is active and how does it look when it is not active? Can you post html? Željko -- http://watirpodcast.com/ --~--~-~--~---

[wtr-general] Re: automating application running on remote network

2009-06-09 Thread Željko Filipin
On Tue, Jun 9, 2009 at 10:00 AM, Rahul Ahuja wrote: > 1. Login to remote network by using Citrix server. > 2. Open the IE from the list of given applications. > 3. Open the URL of AUT. How are you doing this? From a browser? Can you log in manually and then start Watir tests? Željko -- http://wa

[wtr-general] Re: automating application running on remote network

2009-06-09 Thread Željko Filipin
Can you send a screen shot or a link to real site so I could take a look? I really do not understand what is going on. You have IE7 open and you see IE6 inside it? What technology is it using to do that (ActiveX, Java...)? Željko --~--~-~--~~~---~--~~ You received

[wtr-general] Re: How can we verify whether link is deactivated?

2009-06-09 Thread Željko Filipin
On Tue, Jun 9, 2009 at 1:28 PM, Durgesh Nadkarni wrote: > Prev So, you want to check if this link exists, do something, and see if the link does not exist? (Code not tested.) puts "life is good" if browser.link(:text, "Prev").exists? # do something that converts link to text puts

[wtr-general] Re: Issue with Select List

2009-06-09 Thread Željko Filipin
On Tue, Jun 9, 2009 at 3:00 PM, Pallavi Sharma wrote: > could you please let me know when should i try fire them before selecting the value or after selecting the value? Do you have access to developers? Because you should ask them that question. Željko --~--~-~--~~~

[wtr-general] Re: Towards migrating to Watir.com

2009-06-11 Thread Željko Filipin
On Thu, Jun 11, 2009 at 10:31 AM, Alister Scott wrote: > Are we happy to stick with using Confluence and JIRA on openqa.org for > the time being? I am. Have you asked Patrick would he let us have watir.com point to Confluence? Željko --~--~-~--~~~---~--~~ You re

[wtr-general] Re: How to delete a line in a file?

2009-06-12 Thread Željko Filipin
This looks like a question that is not really Watir related. Maybe somebody answers, but you will probably get more replies at ruby forums or http://stackoverflow.com/ Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you ar

[wtr-general] Re: Towards migrating to Watir.com

2009-06-12 Thread Željko Filipin
On Thu, Jun 11, 2009 at 1:30 PM, Alister Scott wrote: > I have created another watir.com wordpress prototype: http://watir001.wordpress.com/ > Check it out and let me know whether you prefer this or http://watirweb.wordpress.com/ I like watir001 more. I think watir.com should only describe Watir

[wtr-general] Re: Towards migrating to Watir.com

2009-06-12 Thread Željko Filipin
On Fri, Jun 12, 2009 at 12:18 AM, Alister Scott wrote: > I am not sure whether the header on the first site (http:// > watirweb.wordpress.com/) is too bold. Hard to say until the header of the first site is on the second site. Give it a try. Maybe a bit smaller, but maybe it will be fine. Željko

[wtr-general] Re: Towards migrating to Watir.com

2009-06-12 Thread Željko Filipin
On Fri, Jun 12, 2009 at 5:54 PM, Bret Pettichord wrote: > Are you saying that you preferred the scope of the earlier site over > what we have now? I think there is no reason for having web site _and_ wiki, when wiki can contain all that information, and it is easier to edit. And yes, I prefer the

[wtr-general] Re: Towards migrating to Watir.com

2009-06-13 Thread Željko Filipin
On Sat, Jun 13, 2009 at 3:41 AM, Bret Pettichord wrote: > So in other words, you would rather not see Alister set up a wordpress > site and instead we could just point watir.com to the wiki? Yes. I thought I said that already. Looks like I was not explicit enough. :) But, if Alister would like t

[wtr-general] Watir Podcast #25 with Dave Hoover of SafariWatir

2009-06-16 Thread Željko Filipin
I am recording a podcast with Dave Hoover of SafariWatir this Friday 7pm utc. If you have any questions for him, please post them here. What is that podcast thing, you ask? Take a look: http://watirpodcast.com/ Željko Filipin --~--~-~--~~~---~--~~ You received

[wtr-general] Re: What languages are supported using Watir

2009-06-16 Thread Željko Filipin
On Mon, Jun 15, 2009 at 3:02 PM, Rahul Ahuja wrote: > Which all languages mentioned below are supported by Watir. What do you mean by that? Can you enter text written in those languages in text box with Watir? I know there are problems with some languages, but I also think there is way to make

[wtr-general] Re: Automating a File uploader popup

2009-06-16 Thread Željko Filipin
On Tue, Jun 16, 2009 at 10:47 AM, Natasha wrote: > One of the links on our company website invokes a file uploader popup > window. This does not work? http://wiki.openqa.org/display/WTR/File+Uploads Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You re

[wtr-general] Re: 30 Second Pauses When Scripting Hotmail

2009-06-17 Thread Željko Filipin
On Tue, Jun 16, 2009 at 10:42 PM, Bill Mosteller wrote: > I suspect it's waiting for the animated ad on the > right hand side of the window to finish, but I cannot prove it. To prove it, disable flash and displaying images (and stuff like that), run test and see if it still waits 30 seconds. Žel

[wtr-general] Re: How to compare Text in Links

2009-06-17 Thread Željko Filipin
Try this (not tested): puts "uh oh" if $ie.div(:id,"center").link(:index,21).text != $ie2.link(:index,31).text Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group

[wtr-general] Re: 30 Second Pauses When Scripting Hotmail

2009-06-17 Thread Željko Filipin
On Wed, Jun 17, 2009 at 4:58 PM, wsm wrote: > Excellent answers! How do I disable flash? Firefox > Tools > Add-ons > Plugins > Shockwave Flash > Disable I guess it is similar in IE. > Alternate approaches to reading Email would be of interest. Ruby has smtp library ( http://www.ruby-doc.org/s

[wtr-general] Re: How to compare Text in Links

2009-06-18 Thread Željko Filipin
On Thu, Jun 18, 2009 at 12:56 PM, Vishal wrote: > It doesn't work. I hope this will not sound rude, but how do you expect me to help you now? Saying `it does not work` does not give me any information what could be wrong. What did you do? What happened when you did it? Any error messages? Želj

[wtr-general] Re: Error using watir when trying to run a web testing

2009-06-19 Thread Željko Filipin
On Fri, Jun 19, 2009 at 5:00 AM, Pato Coronel wrote: > At the same time it is executing, the new window of the browser is > opened as requested in the code, but it is a blank window and a > message is displayed about security in the zones are different so it > is necessary to open the url in a dif

[wtr-general] Re: WATIR with Safari on Windows

2009-06-23 Thread Željko Filipin
2009/6/22 Girisan > We are looking for options for an automated testing solution for > applications on Safari on Windows. At the moment, Safari is supported only on Mac. As far as I know, there are not plans to support it on Windows in the near future. Željko -- http://watirpodcast.com/ --~--~-

[wtr-general] Re: WATIR with Safari on Windows

2009-06-23 Thread Željko Filipin
On Tue, Jun 23, 2009 at 12:09 PM, Girisan wrote: > Is Safari 4 supported by safariwatir? I am not the right person to ask. Try at: http://rubyforge.org/mailman/listinfo/safariwatir-general Željko --~--~-~--~~~---~--~~ You received this message because you are su

[wtr-general] Re: Watir Podcast #25 with Dave Hoover of SafariWatir

2009-06-23 Thread Željko Filipin
On Tue, Jun 16, 2009 at 6:14 PM, George wrote: > I'd like to know if SafariWatir will one day be compatible with the > PC... George, thanks a lot for the question. Asked it and got the answer. I hope I will have the time to edit the podcast in the next few days. Željko --~--~-~--~~

[wtr-general] Re: Towards migrating to Watir.com

2009-06-23 Thread Željko Filipin
On Tue, Jun 23, 2009 at 2:00 PM, Alister Scott wrote: > When the domain is up and running I will start a new thread and we can > start promoting it. Looking forward to doing some promotion! :) Željko --~--~-~--~~~---~--~~ You received this message because you are

[wtr-general] Freenode has blocked the Mibbit client

2009-06-24 Thread Željko Filipin
Our #watir IRC channel does not work on Mibbit any more, and it looks like it will never work again. http://blog.mibbit.com/?p=306 http://blog.freenode.net/2009/06/new-freenode-webchat-and-why-to-use-it/ We can use Freenode web client from now on. Anybody has the time to update wiki page? http:/

[wtr-general] Re: Watir.com now available

2009-06-24 Thread Željko Filipin
It looks great. :) Alister and I are recording a podcast about watir.com in the next few days, so if you have a question for the podcast, sent it here. Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[wtr-general] Re: Freenode has blocked the Mibbit client

2009-06-24 Thread Željko Filipin
On Wed, Jun 24, 2009 at 4:59 PM, Charley Baker wrote: > Done. Thanks Charley. Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send email to watir-general@googleg

[wtr-general] Re: Error while pushing changes to FireWatir

2009-06-26 Thread Željko Filipin
On Fri, Jun 26, 2009 at 12:12 PM, Angrez Singh wrote: > Pushing to g...@github.com:bret/watir.git You are pushing to Bret's fork, and not your own? > error: failed to push some refs to 'g...@github.com:bret/watir.git' This happened to me today (when pushing to my repository). I think my local r

[wtr-general] Re: Error while pushing changes to FireWatir

2009-06-26 Thread Željko Filipin
On Fri, Jun 26, 2009 at 1:09 PM, Angrez Singh wrote: > I used Git GUI to push. was that correct? Yes, if you have access to Bret's fork (and looks like you have). > Now, one more question how to see the changes that I made? - go to bret/watir (http://github.com/bret/watir/tree/master) - click

[wtr-general] Re: Error while pushing changes to FireWatir

2009-06-26 Thread Željko Filipin
On Fri, Jun 26, 2009 at 1:39 PM, Angrez Singh wrote: > Thanks Željko for your help I am also new to Git and Github and I know the pain of being stuck. :) Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Wati

[wtr-general] Re: How to display row,clolumn values of a table

2009-06-29 Thread Željko Filipin
On Mon, Jun 29, 2009 at 11:12 AM, Maumita wrote: > How to display the row, column values of that table without name,id. browser.table(:index, 1).rows.each do {|row| puts row} browser.table(:index, 1).columns.each do {|column| puts column} The code is not tester, so maybe it does not work. :) If

[wtr-general] Re: How to display row,clolumn values of a table

2009-06-29 Thread Željko Filipin
This displays text of all rows: b.table(:index, 1).rows.each {|row| puts row.text} Result: QuantityNameUnit PriceTotal Price DV007-PRODUCT 77.00 DV007-SMA 7.00 DV007-INSTALLATION 7.00 Željko --~--~-~--~~~---~--~~ You received this message because you are subscri

[wtr-general] Re: How to check row contents?

2009-06-30 Thread Željko Filipin
On Tue, Jun 30, 2009 at 12:53 PM, Prince3105 wrote: > This code works good, but sometimes it fails. How? > grid = @ie.frame(:id,"fmPending").table(:id,"ifgPending") > So please tell me if any issue on my code. Try this changing above line to this: def grid @ie.frame(:id,"fmPending").table(

[wtr-general] Re: Running scripts against Watir and Celerity

2009-07-02 Thread Željko Filipin
On Thu, Jul 2, 2009 at 3:39 PM, Jared Quinert wrote: > I'd be happy to have feedback The second paragraph ends in the middle of the sentence: "I still hold out hope that Celerity may improve performance, or that" I was also thinking on running my tests with Celerity, since the application I test

[wtr-general] Re: Running scripts against Watir and Celerity

2009-07-02 Thread Željko Filipin
On Thu, Jul 2, 2009 at 3:57 PM, Jared Quinert wrote: > Apart from JRuby plus Celerity installation being a > pain on Windows. My next blog post... Subscribed and looking forward to your next blog post. :) Željko --~--~-~--~~~---~--~~ You received this message beca

[wtr-general] Re: Watir.com now available

2009-07-02 Thread Željko Filipin
Alister Scott, Gregg Yows and me are talking about watir.com today at 9 pm utc. If you have any questions, let me know. Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir Genera

[wtr-general] Re: Dealing with , and triggering Javascript

2009-07-03 Thread Željko Filipin
On Fri, Jul 3, 2009 at 12:54 AM, Dylan wrote: > Click Here Try this: browser.element_by_xpath("//fo...@title='Click Here']/").click More information: http://wiki.openqa.org/display/WTR/XPath And you can always extend Watir to make this possible: browser.font(:title, "Click Here").click http:

[wtr-general] Watir Podcast #25: Dave Hoover on SafariWatir and Software Craftsmanship

2009-07-04 Thread Željko Filipin
Gregg Yows and I talk with Dave Hoover about SafariWatir and software craftsmanship. http://watirpodcast.com/25-dave-hoover-on-safariwatir-and-software-craftsmanship/ Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are

[wtr-general] Re: Firefox 3.5 compatible with FireWatir?

2009-07-06 Thread Željko Filipin
On Mon, Jul 6, 2009 at 11:27 AM, Hari wrote: > The newly packed XPI does not work for both Firefox 3.0 & 3.5. As far as I remember we always had to have separate xpi for each Firefox version, so if it works with 3.5 only, that is fine. Željko -- http://watirpodcast.com/ --~--~-~--~~-

[wtr-general] Re: Dealing with , and triggering Javascript

2009-07-08 Thread Željko Filipin
On Tue, Jul 7, 2009 at 7:52 PM, Dylan wrote: > I've even copied the exact html and ruby code given in the "What to do > for elements not having class in Watir?" section, and I still get nil > returned. I think you have to have newer version of rexml (3.1.6) than the one shipped with some versions

[wtr-general] Re: Wait for frame to load

2009-07-08 Thread Željko Filipin
On Tue, Jul 7, 2009 at 6:14 PM, Ray wrote: > Is there anyway to tell watir to wait for a frame to load? Did you read this? http://wiki.openqa.org/display/WTR/How+to+wait+with+Watir Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message

[wtr-general] Re: Does watir support spring based application

2009-07-08 Thread Željko Filipin
On Wed, Jul 8, 2009 at 1:53 PM, rrash586 wrote: > Actually i have to evaluate the web application which is based on > Spring technology. >From watir.com: "Watir is a family of Ruby libraries but it supports your app no matter what technology it is developed in." I would recommend that site if yo

[wtr-general] Re: send attachments from outlook

2009-07-08 Thread Željko Filipin
On Wed, Jul 8, 2009 at 2:28 PM, khaja shaik wrote: > can anybody help me how to send a attachment using watir (i have to send using outllook) Watir can only drive browsers (Internet Explorer, Firefox...). You will have to use another tool to automate Outlook. Željko -- http://watirpodcast.com/

[wtr-general] Re: Watir + Cruise Control

2009-07-10 Thread Željko Filipin
Marek, I started playing with Hudson recently. I was able to set it up and call my build script. I am still reading the documentation on how to make it all work nicely. If you have the time to share with us how you set it up to build the app and run tests, that would be very nice. Željko -- http

[wtr-general] Re: Time to learn Watir

2009-07-10 Thread Željko Filipin
On Fri, Jul 10, 2009 at 8:32 AM, Swap wrote: > Can you please tell me how much time the learner will need to > understand and learn Watir? If you have any programming experience, I think you will be surprised by how much you can do in just a day. I remember that I was able to install Watir and ma

[wtr-general] Re: Time to learn Watir

2009-07-10 Thread Željko Filipin
On Fri, Jul 10, 2009 at 1:08 PM, Smruti Ranjan Kar < smrutiranjan@gmail.com> wrote: > After a quick start with Ruby basics and Watir, keep learning Ruby side by side. +1 Exactly the way I did it a few years ago. Željko --~--~-~--~~~---~--~~ You received this

[wtr-general] Re: Internet Explorer NOT working in normal after i ran the watir script

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 8:14 AM, msazeez28july wrote: > However i > could not access any site afterwards. Can you access any site from another browser? Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir

[wtr-general] Re: Time to learn Watir

2009-07-13 Thread Željko Filipin
On Fri, Jul 10, 2009 at 6:00 PM, George wrote: > Needless to say, I was > able to avoid the multiple layoffs we have had recently! :) Alister, Should we put this on watir.com? :) Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[wtr-general] Re: Issue with Select List

2009-07-13 Thread Željko Filipin
On Sat, Jul 11, 2009 at 6:15 AM, Ravinder Singroha < ravindersingr...@gmail.com> wrote: > The site only works with IE so cannot do reverse engineering with Firebug, is there something similar as firebug for IE? http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1D

[wtr-general] Re: Need help

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 11:12 AM, rakesh wrote: > In the page the ID,name of the checkbox remains same But the value > of the check box chnages. What is the problem? Why don't you use id to check checkbox? http://wiki.openqa.org/display/WTR/Checkboxes Željko -- http://watirpodcast.com/ --~--~

[wtr-general] Re: Need help

2009-07-13 Thread Željko Filipin
I still do not understand what the problem is. On Mon, Jul 13, 2009 at 11:23 AM, rakesh wrote: > Sir, > The checkboxes id ,name remains same as "selectedevent" but not "a" > or "b" or "c" > Regards, > S.Rakeshsharma --~--~-~--~~~---~--~~ You received this messa

[wtr-general] Re: Need help

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 11:30 AM, rakesh wrote: > The problem is "how will i select a checkbox in multiple checkboxes" browser.checkbox(:id, "myid").set What is the problem. They all have the same attributes? Can you post the html of checkboxes and let us know which one would you like to select

[wtr-general] Re: Need help

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 11:57 AM, rakesh wrote: > This will check the first one: b.checkbox(:id, "selectedevent").set This will check the second one: b.checkbox(:id => "selectedevent", :index => 2).set More info: http://wiki.openqa.org/display/WTR/Multiple+Attributes I still do not get the

[wtr-general] Re: Need help

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 12:31 PM, rakesh wrote: > My input file dont contain the index,it doesnt know which in which > index You will have to be more explicit. I did not understand what you wanted to say. Željko --~--~-~--~~~---~--~~ You received this message bec

[wtr-general] Re: Why watir works even if the DOM is broken??

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 1:25 PM, Pallavi Sharma wrote: > Thus DOM being broken or not doesn't hamper watir functionality in any way. I am not sure how DOM can be broken. What do you mean by that. HTML does not validate? Watir can work with any page that you browser opens. If browser thinks page

[wtr-general] Re: Why watir works even if the DOM is broken??

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 1:34 PM, Pallavi Sharma wrote: > Like Selenium wont work if the DOM is broken, but watir doesn' get affected by it.. Watir is not html validator. There are tools like that. Watir just automates browser. If browser does not care, Watir does not care. Selenium does not work

[wtr-general] Re: Why watir works even if the DOM is broken??

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 1:41 PM, Pallavi Sharma wrote: > Is there a way we can be help to this development? Yes! :) If you can code: I know SafariWatir is not in active development (and Dave, that created it, offered help if anybody wants to take it over): http://safariwatir.rubyforge.org/ Sai

[wtr-general] Re: Why watir works even if the DOM is broken??

2009-07-13 Thread Željko Filipin
On Mon, Jul 13, 2009 at 2:06 PM, Pallavi Sharma wrote: > Can we help with Fire-watir and Chrome-Watir to begin with and also can take up some doc work. Wiki is at http://wiki.openqa.org/display/WTR/. Create an account and fix/update/create any documentation you would like. :) You can fix bugs in

[wtr-general] Re: How do I stop getting emails from Watir General?

2009-07-17 Thread Željko Filipin
Looks like you have subscribe to the list with two accounts: - martorellg at hotmail was set to receive mail. I have changed it not to receive mail. - zobrista at gmail was already set no to receive mail. If you are still receiving this message from watir-general (I have sent it bcc to your hotma

[wtr-general] Re: windows-pr locally

2009-07-17 Thread Željko Filipin
On Fri, Jul 17, 2009 at 6:28 AM, quang.nguyencong < quang.nguyenc...@gmail.com> wrote: > can somebody show me how to install > windows- pr locally - download http://rubyforge.org/frs/download.php/57164/windows-pr-1.0.5.gemfrom a machine that can do it - copy windows-pr-1.0.5.gem to the machine whe

[wtr-general] Re: Help : XPath : To access elements with same label

2009-07-17 Thread Željko Filipin
On Fri, Jul 17, 2009 at 10:17 AM, ajil wrote: > Now if want to take the data Event 2 1) You have posted two threads with almost the same content. Please do not do that. 2) I get a lot of text for your xpath: irb> b.cell(:xpath, "//lab...@class='con-grey']/../").text Function Requires absolute

[wtr-general] Re: Java Swing based standalone application

2009-07-17 Thread Željko Filipin
On Fri, Jul 17, 2009 at 1:30 PM, Pu wrote: > I want to test java based standalone application using WATIR. Please > let le know it is possible to test it using watir. If it is web application, then it is possible. If it is not web application, then it is not possible. Željko -- http://watirpodca

[wtr-general] Re: Java Swing based standalone application

2009-07-17 Thread Željko Filipin
On Fri, Jul 17, 2009 at 1:45 PM, Pu wrote: > I mean testing with > watir is independent to the language on which an application is > written. Looks like you are reading Watir page at Wikipedia. It is out of date. Take a look at watir.com: "Watir is a family of Ruby libraries but it supports your

[wtr-general] Re: Security Alert pop-up code is not working at all

2009-07-20 Thread Željko Filipin
On Mon, Jul 20, 2009 at 11:34 AM, Dheeraj Gambhir < checktestingthi...@gmail.com> wrote: > whenever i goto the login > page it throws me a security alert popup Take a look: http://wiki.openqa.org/display/WTR/Pop+Ups http://wiki.openqa.org/display/WTR/Security+Alerts Željko -- http://watirpodcast

[wtr-general] Re: Get Text

2009-07-21 Thread Željko Filipin
On Tue, Jul 21, 2009 at 10:39 AM, Dheeraj Gambhir < checktestingthi...@gmail.com> wrote: >"Your Order-No is : > And i want to pick this "random-order-no" and store it in any file. browser.div(:id, "intro").span(:index, 2).text.split(": ")[1] => "2316019" Let me know if you would like to know how

[wtr-general] Re: Not Able to use the playback Option Present in watirrecorder++

2009-07-22 Thread Željko Filipin
On Tue, Jul 21, 2009 at 7:13 PM, Saket wrote: > I recorded one script using Watir Recorder++. You will find that people on this list do not like recorders. Watir Recorder is separate project with it's own site and forum: http://watir-recorder.openqa.org/ http://clearspace.openqa.org/community/wa

[wtr-general] Re: Problem while working with WET WATIR & IE 7

2009-07-22 Thread Željko Filipin
On Tue, Jul 21, 2009 at 3:37 PM, Monali Patil wrote: > I am working on Automation Project where I am using Open Source tool ‘Wet Watir’ for test automation. This is their site: http://wet.qantom.org/ I think it is not in active development. Last update was in 2007. Željko -- http://watirpodcas

[wtr-general] Re: Ruby/Oracle connectivity

2009-07-22 Thread Željko Filipin
On Wed, Jul 22, 2009 at 12:02 AM, Jared Quinert wrote: > Is there a need for a ruby-testing group? If you create one, I will join it. Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group

[wtr-general] Re: Watir support java applets

2009-07-22 Thread Željko Filipin
On Wed, Jul 22, 2009 at 12:37 PM, khaja shaik wrote: > Can anybody tell me is watir supports java aaplets? http://wiki.openqa.org/display/WTR/Introduction "Watir will not work with ... Java Applets" Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You re

[wtr-general] Re: Issues with the P element

2009-07-23 Thread Željko Filipin
On Wed, Jul 22, 2009 at 8:04 PM, Tristan Goffman wrote: > Hi, I've been using Watir:IE and what I'm trying to do is write text, > innerHTML into a You are trying to write text inside tag? How do you do it manually (not using Watir)? Željko -- http://watirpodcast.com/ --~--~-~--~~-

[wtr-general] Re: Watir support java applets

2009-07-23 Thread Željko Filipin
On Thu, Jul 23, 2009 at 6:08 AM, Rohan Ojha wrote: > So does that mean I can still use Watir to drive this applet since the object seems to be available to me in the view source ? If you post some html and tell us what you want to do, we can try to do it. Željko --~--~-~--~~

[wtr-general] Re: Watir support java applets

2009-07-23 Thread Željko Filipin
2009/7/23 Rohan Ojha > Please look into the html attached I see only a blank page. Looks like everything is in frames that are not included in mht file. Željko --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir

[wtr-general] Watir Podcast #26: Alister Scott on Watir.com

2009-08-17 Thread Željko Filipin
Gregg and I talk with Alister about Watir.com: http://watirpodcast.com/26-alister-scott-on-watir-com/ Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post

[wtr-general] Re: Watir Logo Refresh Competition

2009-08-18 Thread Željko Filipin
Alister, Have you received some logos? Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send email to watir-general@googlegroups.com Be

[wtr-general] Re: How can I add loop to check whether all the images of a page has loaded or not?

2009-08-20 Thread Željko Filipin
Have you read this? http://wiki.openqa.org/display/WTR/How+to+wait+with+Watir Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send ema

[wtr-general] Two threads removed by user request

2009-08-21 Thread Željko Filipin
Dheeraj Gambhir has started two threads, `Ruby/Oracle connectivity` and `Pick pop-up text and oracle DB connectivity issue`. Later he noticed that there is confidential data in his posts. He tried to edit the posts, but Google groups does not have such feature. He asked me to edit it, since I am g

[wtr-general] Re: Can I submit examples for Watir rdoc?

2009-08-24 Thread Željko Filipin
On Fri, Jul 31, 2009 at 1:14 AM, George wrote: > I was wondering if I could submit some examples Please do! Do you need any help with that? Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Googl

[wtr-general] Re: Reg- Iframe

2009-08-24 Thread Željko Filipin
What is the problem? Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send email to watir-general@googlegroups.com Before posting, pleas

[wtr-general] Re: Testing Email

2009-08-24 Thread Željko Filipin
On Fri, Aug 7, 2009 at 11:37 PM, b...@pettichord.com wrote: > I would like to automate email testing. Mainly make sure the right > emails were sent. I do that all the time. (I even have to check what the app does when it receives mail.) My app creates mails as files, and puts them in folder wher

[wtr-general] Re: :onmouseup

2009-08-24 Thread Željko Filipin
On Mon, Aug 10, 2009 at 11:37 PM, Dylan wrote: > I'd like to add the ability to locate an element > based on its "onmouseup" (or onmousedown, onclick, etc...) attribute. Xpath does not help? http://wiki.openqa.org/display/WTR/XPath Željko -- http://watirpodcast.com/ --~--~-~--~~---

[wtr-general] Re: Watir and Active X

2009-08-24 Thread Željko Filipin
What do you want to do? Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send email to watir-general@googlegroups.com Before posting, pl

[wtr-general] Re: Testing dynamically-created elements in the DOM

2009-08-24 Thread Željko Filipin
On Tue, Aug 11, 2009 at 4:43 PM, Burdette Lamar wrote: > Some of the HTML pages I test are modified in the DOM after the HTML > is delivered. Do you use a tool like Firebug to explore pages? Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received th

[wtr-general] Re: Is there anyway to wait until all images of a page is not loaded properly.

2009-08-24 Thread Željko Filipin
Does this help? http://wiki.openqa.org/display/WTR/How+to+wait+with+Watir Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Watir General" group. To post to this group, send email t

[wtr-general] Re: WIN32OLERuntimeError: unknown OLE server: `AutoItX3.Control'"

2009-08-24 Thread Željko Filipin
I would suggest that you reinstall Watir, but this time while logged in as administrator. Also, registering AutoIt could help. In a command window, navigate to the directory where you've put AutoIt (probably C:\ruby\lib\ruby\gems\1.8\gems\watir-1.6.2\lib\watir) and type: regsvr32 AutoItX3.dll Že

[wtr-general] Re: A real newbie question

2009-08-26 Thread Željko Filipin
On Wed, Aug 26, 2009 at 1:37 PM, Matt wrote: > Test_site=http://www.google.com > test26aug.rb:2: undefined local variable or method `www' for > main:Object (NameError) You have forgot quotes: Test_site="http://www.google.com"; Željko -- http://watirpodcast.com/ --~--~-~--~~

[wtr-general] Re: Help selecting elements of a drop down list when the site uses Javascript/ASP.net

2009-08-27 Thread Željko Filipin
On Thu, Aug 27, 2009 at 2:35 AM, Doodle wrote: > site (which, btw, is a public site for looking at detailed reports > about banks), Can you send us a link and let us know what you want to do? Željko -- http://watirpodcast.com/ --~--~-~--~~~---~--~~ You received t

[wtr-general] Re: Help selecting elements of a drop down list when the site uses Javascript/ASP.net

2009-08-28 Thread Željko Filipin
On Fri, Aug 21, 2009 at 11:40 PM, Doodle wrote: > datedrop=ff.select_list(:name,"FacsimileSearchControl1:FromDateDropdownlist") No no no. :) Replace with this, try and let me know if it works now: def datedrop ff.select_list(:name,"FacsimileSearchControl1:FromDateDropdownlist") end Željko --

[wtr-general] Re: Reg-Image(need help urgent)

2009-08-28 Thread Željko Filipin
On Fri, Aug 28, 2009 at 3:08 PM, Ila wrote: > > ie.button(:src, /upload_Image_new/).click It works for me. Please make sure you are at the right page. Can you find the button with tool like IE developer toolbar or Firebug? Željko -- http://watirpodcast.com/ --~--~-~--~~-

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