[wtr-general] Button click in IE8 using watir web-driver.

2011-12-09 Thread Prajakta Jadhav
Hello, I am just following this script on http://watirwebdriver.com/: require 'watir-webdriver' b = Watir::Browser.new b.goto 'bit.ly/watir-webdriver-demo' b.text_field(:id = 'entry_0').set 'your name' b.select_list(:id = 'entry_1').select 'Ruby' b.select_list(:id = 'entry_1').selected? 'Ruby' #~

Re: [wtr-general] Related to multiple instance of IE

2011-04-15 Thread Prajakta Jadhav
Try these: http://wiki.openqa.org/display/WTR/New+Browser+Windows http://wiki.openqa.org/display/WTR/New+Browser+Windows http://stackoverflow.com/questions/5630084/how-to-handle-new-browser-pop-up-after-clicking-a-js-button-in-watir

Re: [wtr-general] Intermittent Watir issue with Firefox

2011-02-03 Thread Prajakta Jadhav
How are you using 'watir' for firefox? You should be using 'firewatir', right? -Prajakta On Thu, Feb 3, 2011 at 7:43 PM, Stephen Mc Gowan mccl...@gmail.com wrote: Hi, I'm seeing an intermittent watir issue with firefox. I really don't know whats causing it, I can't seem to cause it to

Re: [wtr-general] Automating the object with in TD tag

2011-01-12 Thread Prajakta Jadhav
you could use src to identify it. browser.image(:src = /gtk-ok/).click Find more info here: http://wtr.rubyforge.org/rdoc/1.6.5/classes/Watir/Container.html#M000324 -Prajakta On Thu, Jan 13, 2011 at 10:43 AM, sweet flower ure...@gmail.com wrote: Hi, I was able to automate that using the Cell

Re: [wtr-general] Watir 1.7.0 Released

2011-01-06 Thread Prajakta Jadhav
Happy New Year to you too! And thanks for the new Watir. :) Is this Watir version tested on latest Ruby, i.e 1.9.2 or is Ruby 1.8.6 still the recommended ruby version for Watir? Regards, Prajakta On Thu, Jan 6, 2011 at 2:26 PM, Jarmo jarm...@gmail.com wrote: Hello and Happy New Year to

Re: [wtr-general] Unable to identify the object error

2010-12-06 Thread Prajakta Jadhav
Try using value of the option instead of label. E.g: browser.select_list(:name,ModuleID).set(13) -Prajakta On Mon, Dec 6, 2010 at 7:12 PM, Sudeep sudeeppattn...@gmail.com wrote: Hi, I am getting the following error while setting a value to the drop down list. Watir Script :

Re: [wtr-general] Re: Javascript pop uo using firewatir

2010-11-22 Thread Prajakta Jadhav
Why does Browser.link(:href,/users/1).click have double quotes ( ) around :href? That is not required and I am not sure if that will work either. This is the syntax: a href=page.htmie.link(:href, /page/).click Try removing those double quotes. Hope it works. 2010/11/22 Amit Kulkarni

Re: [wtr-general] Automating websiet implemented using AJAX

2010-11-18 Thread Prajakta Jadhav
Try using some other element property like name or value instead of id. You could find their values using developer's tool bar. 2010/11/18 Hrishikesh Bose hrishikesh.b...@gmail.com may be i am new to the Watir. The problem i am facing is as following. . i need to automate a use case which

Re: [wtr-general] Writing and running WATIR scripts

2010-11-17 Thread Prajakta Jadhav
Find the information here: http://screencast.com/t/k5LGJDT0Dap On Thu, Nov 18, 2010 at 12:28 PM, Sudeep sudeeppattn...@gmail.com wrote: Hi, I am completely new to WATIR. I have installed Ruby 1.9.2 and have also installed WATIR by the command: gem install watir WATIR has been installed

Re: [wtr-general] Writing and running WATIR scripts

2010-11-17 Thread Prajakta Jadhav
oops.. wrong link... this is the correct one: http://ruby.about.com/od/beginningruby/ss/visualinstal_7.htm On Thu, Nov 18, 2010 at 12:37 PM, Prajakta Jadhav jadhav.praja...@gmail.com wrote: Find the information here: http://screencast.com/t/k5LGJDT0Dap On Thu, Nov 18, 2010 at 12:28 PM

Re: [wtr-general] Re: Writing and running WATIR scripts

2010-11-17 Thread Prajakta Jadhav
that SCITE edito has been used. Do I need to download SCITE editor?? On Nov 18, 12:07 pm, Prajakta Jadhav jadhav.praja...@gmail.com wrote: oops.. wrong link... this is the correct one: http://ruby.about.com/od/beginningruby/ss/visualinstal_7.htm On Thu, Nov 18, 2010 at 12:37 PM

Re: [wtr-general] Need to count specific DIVs within a DIV

2010-11-03 Thread Prajakta Jadhav
I think you should try : ie.div( :id, 'foo' ).divs.each {|d| puts 'found one!' if d.class == 'bar'} Probably one '=' in your comparison is missing. Also attaching my working sample script for reference here. Hope this helps. ie.div(:id, id).divs.find_all{|dvi| dvi.class_name ==

Re: [wtr-general] Implementation of element object map for web automation.

2010-10-21 Thread Prajakta Jadhav
-research.ch wrote: On Thu, Oct 21, 2010 at 8:12 AM, Prajakta Jadhav jadhav.praja...@gmail.com wrote: I would like to know if there is a better way of implementing this UI map than what I am thinking of. I would suggest you take a look at Taza: http://github.com/scudco/taza/ Željko

Re: [wtr-general] Re: Installation of Watir 1.6.5

2010-04-20 Thread Prajakta Jadhav
your win32-process gem version is mismatching. I am attaching the required gem with this mail. Install it and then check. If it asks for any more dependent gems you can get them at following link - http://rubygems.org/gems/win32-process/versions/0.5.5

Re: [wtr-general] Installation of Watir 1.6.5

2010-04-16 Thread Prajakta Jadhav
did you run 'gem update' command? what does 'gem -v' command return to u? Is it greater than 1.3.5? If not, then your update was not successful. you are still in the older version. You will need to install rubygem1.3.6 first Then again run 'gem install watir'. On Fri, Apr 16, 2010 at 3:11 PM,

[wtr-general] What has happened to http://wtr.rubyforge.org/rdoc/ ?

2010-02-01 Thread Prajakta Jadhav
This page is showing some index instead of the Watir's RDoc with 3 lists. Did I miss something? When did this page change? -- 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

Re: [wtr-general] How to click this strange link in Firewatir and Safariwatir?

2010-02-01 Thread Prajakta Jadhav
try @browser.link(:class,userMenuLink).click Actually if :text works in IE, it should work in FF. Yet you could give the above a try. -Prajakta On Tue, Feb 2, 2010 at 11:49 AM, Yuping Zhong littlezhong...@gmail.comwrote: Dear All, I want to use the Watir to click a link that looks like a

Re: [wtr-general] Re: Getting the text inside the div

2010-01-13 Thread Prajakta Jadhav
Following should serve your purpose: ie.div(:class, testing_1).divs.each do |dv| puts dv.text -Prajakta On Wed, Jan 13, 2010 at 4:41 PM, Soori sure...@gmail.com wrote: Hi John, .html will return the html with DIV,etc, I would like to get only the text inside the div . Thanks, Soori

Re: [wtr-general] need help on how to close the new windows

2009-12-30 Thread Prajakta Jadhav
u will need to get the handle of new browsers that are opening then execute browser.close for those browser windows if you are clicking some link/image which in turn opens your new browser window then you will have to use some 'getwindow' type of method to get the handle of that browser

Re: [wtr-general] need help on how to close the new windows

2009-12-30 Thread Prajakta Jadhav
If in case you are clicking on some link/image which in turn opens a new browser window then u ll need to get the handle of that new window first. Then u can execute browser.close on it. U ll need to attach the new window to a new watir browser instance. eg - ie2 = watir::IE.new ie2.attach(:url,

[wtr-general] Re: Need to print results of Mulitple scripts in one HTML file

2009-10-08 Thread Prajakta Jadhav
Shouldn't be a problem. Open the same html file in both the scripts for logging the results. It will log the results one after another in the same html file. -Prajakta On Fri, Oct 9, 2009 at 10:31 AM, Bindhu udayarekha2...@gmail.com wrote: Hi All, In batch file I have included 2 scripts to

[wtr-general] Re: Setting innerHTML of a div using Watir.

2009-09-17 Thread Prajakta Jadhav
Can you post the html code of this page? Are there any frames outside the div? On Fri, Sep 18, 2009 at 5:34 AM, Brian Rosenthal brosent...@facebook.comwrote: Hi, We’re using an “editable div”, and we need to be able to set its contents using Watir (in IE). What’s the best way to do that?

[wtr-general] Re: How to click the graybutton?

2009-08-27 Thread Prajakta Jadhav
you need to write something like: @browser.link(:href, https://ome.swimconnection.com/ome/users/new;).click A indicates a link. Its not a button. -Prajakta On Thu, Aug 27, 2009 at 3:42 PM, yuping zhong littlezhong...@gmail.comwrote: Dear All, I am an new user of Watir. Right now, I meet a

[wtr-general] Re: How to get static text value in a variable

2009-06-15 Thread Prajakta Jadhav
try this -- puts ie.cell(:class,ms-OneMerckQuickPollMessageDisplayCell).text Prajakta On Mon, Jun 15, 2009 at 12:44 PM, Rahul Ahuja mightyah...@gmail.com wrote: But, there is no :id property associated with it. Thanks Wesley Chen for your quick response. But, unfortunately the solution

[wtr-general] Re: Can WATIR automate web applications developed using Sharepoint Technology ?

2009-06-10 Thread Prajakta Jadhav
I have automated a sharepoint application using watir... not a very big deal.. but you will have to dig around a bit at times On Wed, Jun 10, 2009 at 3:45 PM, Rahul Ahuja mightyah...@gmail.com wrote: Can WATIR automate web applications developed using Sharepoint Technology? Thanks Regards,

[wtr-general] Re: WatirCraft LLC is closing

2009-06-05 Thread Prajakta Jadhav
All the best Bret and Pete...! And a bigg THANK YOU for WATIR... :) On 6/4/09, Bret Pettichord b...@pettichord.com wrote: Pete Dignan and I have decided to shut down WatirCraft LLC. I will begin working full time for Convio in July. Convio has made a big commitment to using Watir. I will

[wtr-general] Re: Multiple Attributes for Text Fields

2009-06-01 Thread Prajakta Jadhav
thats really cool! On Mon, Jun 1, 2009 at 9:12 PM, Chuck van der Linden sqa...@gmail.comwrote: On May 30, 4:50 am, karimnumerouno karim@gmail.com wrote: hi could any one share a link our some stuff of multi attribute selection, it there any doc there be a tool user:

[wtr-general] Re: Watir and flash audio

2009-06-01 Thread Prajakta Jadhav
I had this problem when I used $ie.send_keys() function.. this does not work if user hasn't logged in to windows. Maybe you are using some such GUI function in your script. Guess you ll have to use some other alternative for that function. On Mon, Jun 1, 2009 at 7:10 PM, Philbo phi...@gmail.com

[wtr-general] Re: How can I open message in gmail inbox.

2009-05-26 Thread Prajakta Jadhav
Is it okay if the account concerned is Outlook Web Access.. or you require only gmail or yahoo and such other mail accounts? I have implemented exactly same functionality taht you are seraching for.. but in OWA I can share it with you incase you can work with OWA On Tue, May 26, 2009 at 10:37 PM,