Re: [wtr-general] Re: Button Element not visible in watir

2015-07-22 Thread Mahesh Mesta
Hi, I tried using browser.span(:text, 'Submit').click, It worked. Thank you all !! On Wed, Jul 22, 2015 at 10:28 AM, Chuck van der Linden wrote: > On Tuesday, July 21, 2015 at 5:24:04 AM UTC-7, Mahesh Mesta wrote: >> >> I'm using watir to perform automated

[wtr-general] Button Element not visible in watir

2015-07-21 Thread Mahesh Mesta
I'm using watir to perform automated testing for an application and trying to click on a submit button once I select options for select list and fill up the form.However on clicking the button, it throws element not found error The html snippet for button tag Submit The ruby script

[wtr-general] Need help how to work with watir testing angularjs app

2015-07-14 Thread Mahesh Mesta
. Regards, Mahesh. -- -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/watir-general watir-general+unsubscr...@googlegroups.com --- You received this message because you are subscribed

Re: [wtr-general] Unable to download file using WATIR and AutoIT from Firefox

2012-07-19 Thread Mahesh Shivankar
,'uploadfile').set(sFileName) > > Sample code > > > size="30" name="uploadfile" tabindex="101"> > > > > > > On Tuesday, July 17, 2012 4:47:39 AM UTC-5, Mahesh Shivankar wrote: > >> I don't think,

Re: [wtr-general] Unable to download file using WATIR and AutoIT from Firefox

2012-07-17 Thread Mahesh Shivankar
I don't think, I neatly clarified my point. Sorry for that. I intend to drive FF only with watir-webdriver. On Tuesday, 17 July 2012 15:13:31 UTC+5:30, Željko Filipin wrote: > > On Tue, Jul 17, 2012 at 11:26 AM, Mahesh Shivankar < > maheshshivankar...@gmail.com> wrote: >

Re: [wtr-general] Unable to download file using WATIR and AutoIT from Firefox

2012-07-17 Thread Mahesh Shivankar
Yes, I did initially mention that. On Tuesday, 17 July 2012 14:53:34 UTC+5:30, Željko Filipin wrote: > > On Tue, Jul 17, 2012 at 11:06 AM, Mahesh Shivankar < > maheshshivankar...@gmail.com> wrote: > > I initially tried with watir-webdriver gem but could not get ahead, so >

Re: [wtr-general] Unable to download file using WATIR and AutoIT from Firefox

2012-07-17 Thread Mahesh Shivankar
I initially tried with watir-webdriver gem but could not get ahead, so was looking forward to using watir/WindowHelper approach that I had come across. On Tuesday, 17 July 2012 14:07:17 UTC+5:30, Željko Filipin wrote: > > On Tue, Jul 17, 2012 at 10:29 AM, Mahesh Shivankar < > mah

Re: [wtr-general] Unable to download file using WATIR and AutoIT from Firefox

2012-07-17 Thread Mahesh Shivankar
Thank you Željko <http://watirwebdriver.com/browser-downloads/> :) And is the watir/WindowHelper support completely removed ? On Tuesday, 17 July 2012 13:20:04 UTC+5:30, Željko Filipin wrote: > > On Tue, Jul 17, 2012 at 8:55 AM, Mahesh Shivankar < > maheshshivankar...@gmail.co

[wtr-general] Unable to download file using WATIR and AutoIT from Firefox

2012-07-16 Thread Mahesh Shivankar
Hello all, I'm trying to automate the process of downloading a file using firefox, with the help of watir and autoit. For this problem one of the solutions I found was to use "watir/WindowHelper" and create thread for handling the modal dialog box which will be prompted when I try to download

Re: [wtr-general] Re: Automating import feature in TestLink

2012-07-13 Thread Mahesh Shivankar
+5:30, Željko Filipin wrote: > > On Fri, Jul 13, 2012 at 5:33 AM, Mahesh Shivankar < > maheshshivankar...@gmail.com> wrote: > > I downloaded the executable file but i'm having hard time placing it. > > And the problem is? > > Željko > -- > filipin.eu >

[wtr-general] Re: Automating import feature in TestLink

2012-07-12 Thread Mahesh Shivankar
enium/downloads/listand place the executable on your PATH. I downloaded the executable file but i'm having hard time placing it. On Thursday, 12 July 2012 18:03:34 UTC+5:30, Mahesh Shivankar wrote: > > Hello, > > I'm trying to automate import feature present in TestLink on my o

[wtr-general] Automating import feature in TestLink

2012-07-12 Thread Mahesh Shivankar
@ie = Watir::Browser.new @ie.maximize @ie.goto(URL) end def gotologin() @ie.text_field(:id, "login").set("mahesh") @ie.text_field(:name, "tl_password").set("mahesh123")

[wtr-general] Re: Need to click on a link which has only the class name.

2011-06-15 Thread Mahesh
Ashok, this is the source code: On Jun 15, 6:20 pm, Ashok Tulachan wrote: > What's the source code for your link??? > > Ashok > > > > On Wed, Jun 15, 2011 at 2:27 AM, Mahesh wrote: > > Hi, > > > > id=mainTabsId__CaseDetails> > > > Thi

[wtr-general] Need to click on a link which has only the class name.

2011-06-15 Thread Mahesh
Hi, This is the source code, and i am using the if condition to extract the dynamic class name to extract the class name & click the link. The Watir script i am using is: if // begin ie.link(:class, $1).click rescue => e

[wtr-general] Re: Verify file permission using watir script

2011-05-12 Thread Mahesh
Thanx for correcting me guys., i got the solution. On May 11, 11:49 am, Mahesh wrote: > Hi, > > can any one let me know how do i verify the file permissions in unix > using an watir script..? -- Before posting, please read http://watir.com/support. In short: search before you

[wtr-general] Verify file permission using watir script

2011-05-11 Thread Mahesh
Hi, can any one let me know how do i verify the file permissions in unix using an watir script..? -- Before posting, please read http://watir.com/support. In short: search before you ask, be nice. watir-general@googlegroups.com http://groups.google.com/group/watir-general watir-general+unsubsc

Re: [wtr-general] using verify method

2010-09-13 Thread Mahesh Maiya
Hi KArtheek, try out this code assert(browser.link(:text, 'create link').exists?, 'Could not find the Link') regards, Mahesha Maiya On Tue, Sep 14, 2010 at 11:48 AM, chunchu kartheek < chunchukarth...@gmail.com> wrote: > Hi , > > Can anyone help me how to use verify method . I want to verify w

Re: [wtr-general] Re: watir suite hanging issue

2010-02-16 Thread Mahesh Maiya
Thanks Reed, I tried *browser.refresh* in places usually my script hangs. Am waiting for my suite to run completely, I'll verify the result and if still same issue, then I'll try out the solution provided by Brian If both doesn't work out to me, then ill log a bug regards, Mahesh

Re: [wtr-general] Re: watir suite hanging issue

2010-02-16 Thread Mahesh Maiya
Hey Brian, Thanks a lot, i'll try out the solution u provided and get back to you soon regards, Mahesh On Wed, Feb 17, 2010 at 3:18 AM, Brian Tomlin wrote: > I had a problem like this before and the workaround I used was to kick > off a thread that checked something in the brows

[wtr-general] watir suite hanging issue

2010-02-16 Thread Mahesh Maiya
Hi All, This is Mahesh. Am new to this community and this is my first post. please share if you have any idea for the below problem I'm working with a web applicatio that sometimes hangs in the middle of a test. Is there a way to automate this with Watir? (way to proceed by refreshin

[wtr-general] Re: Help required to access src element in the following code.

2010-02-09 Thread ashwin mahesh
fication. On Feb 9, 4:44 pm, Željko Filipin wrote: > On Tue, Feb 9, 2010 at 6:23 AM, ashwin mahesh wrote: > > Any idea how to overcome this problem. > > No, because you did not provide answers to my questions. > > Željko > -- > watir.com - community manager

[wtr-general] Re: Help required to access src element in the following code.

2010-02-08 Thread ashwin mahesh
Any idea how to overcome this problem. Thanks, Ashwin. On Feb 6, 2:56 pm, ashwin mahesh wrote: > When I click on a button, src="/bf/Charts/Pie2D.swf" will change to > src="/bf/Charts/Pie3D.swf". So to verify this change I need to access > the the element whose

[wtr-general] Re: Help required to access src element in the following code.

2010-02-06 Thread ashwin mahesh
t. Thanks, Ashwin On Feb 5, 3:32 pm, Željko Filipin wrote: > On Fri, Feb 5, 2010 at 10:47 AM, ashwin mahesh wrote: > > I need to access the src="/bf/Charts/ > > Pie2D.swf" present in the last line of the following HTML code, for > > verification. > > What do y

[wtr-general] Help required to access src element in the following code.

2010-02-05 Thread ashwin mahesh
This is the HTML code of a chart. I need to access the src="/bf/Charts/ Pie2D.swf" present in the last line of the following HTML code, for verification. Any help in this regard would be appreciated. Thanks, Ashwin -- You received this message because you are subscribed to the Google Groups

[wtr-general] How to get the Response code of URLs on the page?

2009-04-15 Thread Mahesh
I have the Ruby script written using 'net/http', 'watir', 'uri', 'open- uri' modules. I am able to get the response code by parsing the Hostname [Net::HTTP.new("#{final_link}", nil)]. The problem with this is i am able to get the response code for the kind of URLs linke this: www.yahoo.com, www.go