I think you can search the method as set_no_wait in Watir general group.
Then you may have a try on it.
Wesley.
For life, the easier, the better.
On Fri, May 28, 2010 at 7:54 AM, kashyap wrote:
> Thank you for posting in the link.I checked it before and I tried one
> of the solutions and it wo
Thank you for posting in the link.I checked it before and I tried one
of the solutions and it works fine if there is a button in the form
that triggers the javascript validation function.
However, in my web form, whenever i enter some data in the text_field,
the onchange event gets called, this tr
I have just published another podcast:
http://watirpodcast.com/34-zhimin-zhan-on-testwise/
It is a big day for Watir Podcast. Today it is 2 years old! :)
Željko
--
Before posting, please read http://watir.com/support. In short: search before
you ask, be nice.
You received this message becaus
is there an alternative that is not windows dependant
On Thu, May 27, 2010 at 4:56 PM, Ethan wrote:
> I'm happy to see this being updated. I had run into most of the issues you
> mentioned with it (segfaults, incompatibility due to DL's incompatibility),
> and ended up writing my own version, ad
I'm happy to see this being updated. I had run into most of the issues you
mentioned with it (segfaults, incompatibility due to DL's incompatibility),
and ended up writing my own version, adapted from win32screenshot and some
other sources.
http://github.com/vapir/vapir/blob/master/vapir-common/li
Hello.
I'm thinking that here are probably some people who would like to take
screenshots in their tests so i'll write about Win32::Screenshot in
here also.
I've taken over a gem called win32screenshot from Aslak Hellesøy and
released a new version of it after 3+ years.
Since this new version 0.
On Thu, May 27, 2010 at 10:13 PM, Adam Reed wrote:
> Exactly what I came to post; You're too fast Željko!
The fastest gun in the West! :)
Željko
--
Before posting, please read http://watir.com/support. In short: search before
you ask, be nice.
You received this message because you are subscr
Exactly what I came to post; You're too fast Željko!
On May 27, 3:04 pm, Željko Filipin
wrote:
> On Thu, May 27, 2010 at 7:14 PM, kashyap wrote:
> > I want to get a handle of that popup
> > and verify the text on the alert window and hit on OK button.
>
> Did you read this?
>
> http://wiki.openq
On Thu, May 27, 2010 at 7:14 PM, kashyap wrote:
> I want to get a handle of that popup
> and verify the text on the alert window and hit on OK button.
Did you read this?
http://wiki.openqa.org/display/WTR/Pop+Ups
Željko
--
watir.com - community manager
watirpodcast.com - host
testingpodcast.com
Hi,
I am trying to write test scripts to automate a web application.One of
the text_fields in a form has an onchange event that calls a
javascript function to validate the value entered in the text_field.If
the value entered is an invalid one, then an alert window pops up
displaying an error text
1. That message was intended to apply to the above method, not below.
#set_text_field(value) is not implemented. #click_button(button_text) is
implemented. I will update that to be less ambiguous.
2. No. Watir-Webdriver is, as far as I know, the only watiry thing that
supports chrome to any extent,
After checking it out, it looks like a better alternative indeed.
Thank you. Just two questions:
1.
"Not yet implemented for Vapir-Firefox
#click_button(button_text)
Finds a button on the modal dialog with text matching the given text.
Clicks on it."
I have one modal dialog in the site that I need
Vapir-Firefox is a more featureful and stable fork of Firewatir. The API is
the same, with a few exceptions. You might have a look at it. Its homepage
is at http://vapir.org/
On Thu, May 27, 2010 at 06:34, Liberty1776 wrote:
> Update:
> This seems to happen after I close one of Firefox windows.
Hi All,
We got the solution to click Rad combox drop down list and to select the
value.
$ie.link(:id,"rcb__Arrow").click # It should be the link that will trigger
the div to appear with the items #
$ie.div(:id,"what ").div(:class,"
what").ul(:class,"what").li(:text,"what").click
Thanks,
Khaja
> How is this Watir related?
This, but also your error message seems to indicate that you typed
"mainfest" instead of "manifest". Maybe as simple as a typo.
On May 25, 4:36 am, Željko Filipin
wrote:
> On Tue, May 25, 2010 at 7:24 AM, Prashant
> wrote:
>
> > When I ran below command using visual
At the moment, Pacman just goes randomly in all directions:
http://github.com/zeljkofilipin/pacman
There is a short video, too:
http://www.youtube.com/watch?v=r9Y6RtKiTQs
Željko
--
Before posting, please read http://watir.com/support. In short: search before
you ask, be nice.
You received t
Hi David,
On Thu, May 27, 2010 at 7:26 AM, David Beckwith
wrote:
> Is it possible to monitor asynchronous calls to other servers? For
> example, I want to test to make sure our API is being properly
> implemented on a partner site: 'notify' signals are to be sent to my
> company's site. I want
Update:
This seems to happen after I close one of Firefox windows. I'm using
3.5.9, as that's current for my Ubuntu. Afterwards this problem
manifests itself and have to quit Firefox and restart it.Then it
works again.
Except that after 2nd time restarting Ubuntu Firefox this way, Firefox
refuse
Hi all,
I've just started using Watir. I'm developing in Linux, so I'm using
FireFox 3.5 for Ubuntu 9.10 with firewatir 1.6.5. My simple script
worked for 3 times and then started failing with this error.
Even this fails now:
b = FireWatir::Firefox.new
I still have FireFox open and it hasn't chang
try looking for something of this form
browser.div(:text, "text to right of plus").span(:class,
"rtPlus").click
If that doesn't work for you, (and be sure to check on the class of
the span) then have a look at telerik's site at their treeview
examples and identify which one of them is closest t
Have a look at this example
http://demos.telerik.com/aspnet-ajax/combobox/examples/default/defaultcs.aspx
pick the combobox for 'product' does that look something like the
control you are trying to manipulate?
When I examine that example and in particular look at the 'cell' that
has "123" in
Is it possible to monitor asynchronous calls to other servers? For
example, I want to test to make sure our API is being properly
implemented on a partner site: 'notify' signals are to be sent to my
company's site. I want to log that their JQuery is generatign the
'notify' signals. There are no
$browser.text_field(:name,"form[element3]").set("Ruby")
It works in IE.
But when I use the same command in Safari and FF,get the same error as rsb.
Anyone knows how to resolve this in SafariWatir and FireWatir???
On Thu, May 27, 2010 at 5:26 AM, George wrote:
> It seems to work for me (I'm us
Please try to use the index.
On Thu, May 27, 2010 at 3:01 PM, khaja shaik wrote:
> Hi All,
>
> Can anybody have any idea to click the nodes in a Rad Tree view. Rad tree
> view have the 10 nodes and i have to click 1st node, 2nd node and 3rd node
> and so on.
>
> Thanks,
> Khajs Shariff
>
>
>
> -
Hi All,
Can anybody have any idea to click the nodes in a Rad Tree view. Rad tree
view have the 10 nodes and i have to click 1st node, 2nd node and 3rd node
and so on.
Thanks,
Khajs Shariff
--
Before posting, please read http://watir.com/support. In short: search before
you ask, be nice.
You
25 matches
Mail list logo