Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Chan Nguyen
Hello Zeljko,
I just tried to test our website.From my understanding, Watir has to know
the information of attribute of each element.( Eg. id, name...ect ).
However, our website have a lot of JavaScripts that deal with each element
in a cell of a table. By that, I mean, I can access to the "cell" of a
table. But this "cell" also has a list of other options.
This is the site that I'm currently testing:

http://svvarmls.rapmlsqa.com/
username: rapstaff
pw: Succ3ss!

And this is my script.

*require "rubygems"

# the Watir controller
require "watir"

# set a variable
test_site = "http://svvarmls.rapmlsqa.com/";

# open the IE browser
ie = Watir::IE.new

# print some comments
puts "Beginning of test: Sedona Verde Valley"

puts " Step 1: go to the test site: " + test_site
ie.goto test_site

puts " Step 2: enter username : rapstaff in the Agent ID field"
ie.text_field( :id, "txtUserName" ).set "rapstaff"

puts " Step 3: enter password : Succ3ss! in the Agent ID field`"
ie.text_field( :id, "txtPassword" ).set "Succ3ss!"


puts " Step 4: click the 'Submit' button."
ie.button( :id, "btnSubmit" ).click

puts " Step 5: after navigate to
http://login.rapmlsqa.com/BroadcastNotices.aspx?hidMLS=SDNA, click 'Read
Later' button "
ie.button( :id, "btnReadLater" ).click
*
After clicking the "Read Later" button, it will prompt me to another page.
In this page, from the very top, you can see there are several options:
--
- Search - Listing - Tax - Contact - Links - Admin - Help -
--
And this is a table with one row and 8 columns.
The first element [1][1] is Search, which will call the JS to process all
the search options. When you move your mouse over "Search", you will see all
the others options.

I want to click on each individual option of Search( Quick Search, Custom
Search ) to test, but I could not find a way to make it work. If you
have a chance, would you mind taking a look at it?

Thanks,
Chan Nguyen




On Wed, Jul 28, 2010 at 2:57 AM, Željko Filipin <
zeljko.fili...@wa-research.ch> wrote:

>
> http://stackoverflow.com/questions/3346567/how-to-access-each-element-of-several-tables
>
> --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> You received this message because you are subscribed to
> http://groups.google.com/group/watir-general
> To post: watir-general@googlegroups.com
> To unsubscribe: 
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Željko Filipin
On Wed, Jul 28, 2010 at 4:11 PM, Chan Nguyen  wrote:
> I want to click on each individual option of Search( Quick Search, Custom
Search ) to test, but I could not find a way to make it work.

This worked for me:

browser.cell(:id => "uwmMainMenu_1").click
# search menu appears

browser.cell(:text => "Quick").click
# go to quick search

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Chan Nguyen
Hi Zeljko,

Thanks a lot for your help. I found out that the document for Watir still
had very few examples. Could you write some more about how to deal with
JavaScript, and other advanced features? That would be awesome for Watir
community and for me too ^_^.

Thanks,
Chan Nguyen

On Wed, Jul 28, 2010 at 7:47 AM, Željko Filipin <
zeljko.fili...@wa-research.ch> wrote:

> On Wed, Jul 28, 2010 at 4:11 PM, Chan Nguyen  wrote:
> > I want to click on each individual option of Search( Quick Search, Custom
> Search ) to test, but I could not find a way to make it work.
>
> This worked for me:
>
> browser.cell(:id => "uwmMainMenu_1").click
> # search menu appears
>
> browser.cell(:text => "Quick").click
> # go to quick search
>
> Željko
>
>  --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> You received this message because you are subscribed to
> http://groups.google.com/group/watir-general
> To post: watir-general@googlegroups.com
> To unsubscribe: 
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Željko Filipin
On Wed, Jul 28, 2010 at 4:54 PM, Chan Nguyen  wrote:
> Thanks a lot for your help.

I am glad I could help.

> I found out that the document for Watir still had very few examples.

Really? What have you read so far?

> Could you write some more about how to deal with JavaScript, and other
advanced features?

I really do not know anything advanced. The problem you had was not related
to javascript (as you can see from my reply).

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Chan Nguyen
Hi Zeljko,

I tried your solution, but it did not work out :( ! And can I ask you what's
difference between => and , in those context?

On Wed, Jul 28, 2010 at 7:57 AM, Željko Filipin <
zeljko.fili...@wa-research.ch> wrote:

> On Wed, Jul 28, 2010 at 4:54 PM, Chan Nguyen  wrote:
> > Thanks a lot for your help.
>
> I am glad I could help.
>
>
> > I found out that the document for Watir still had very few examples.
>
> Really? What have you read so far?
>
>
> > Could you write some more about how to deal with JavaScript, and other
> advanced features?
>
> I really do not know anything advanced. The problem you had was not related
> to javascript (as you can see from my reply).
>
>
> Željko
>
> --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> You received this message because you are subscribed to
> http://groups.google.com/group/watir-general
> To post: watir-general@googlegroups.com
> To unsubscribe: 
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Željko Filipin
On Wed, Jul 28, 2010 at 5:19 PM, Chan Nguyen  wrote:
> I tried your solution, but it did not work out :( !

What does that mean? Quick search page does not open?

Which OS, browser, Ruby and Watir are you using?

I am on Mac OS 10.6.4, Firefox 3.8.6, ruby 1.8.7, watir-webdriver 0.0.6.

> And can I ask you what's difference between => and , in those context?

Just something cool kids do. :)

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Chan Nguyen
Hi Zeljko,
Yes, Quick Search Page did not open.

I'm running Windows Server 2003, FF 3.6.8, ruby 1.8.7. I don't have
Watir-webdriver installed.

Thanks,
Chan Nguyen

On Wed, Jul 28, 2010 at 8:50 AM, Željko Filipin <
zeljko.fili...@wa-research.ch> wrote:

> On Wed, Jul 28, 2010 at 5:19 PM, Chan Nguyen  wrote:
> > I tried your solution, but it did not work out :( !
>
> What does that mean? Quick search page does not open?
>
> Which OS, browser, Ruby and Watir are you using?
>
> I am on Mac OS 10.6.4, Firefox 3.8.6, ruby 1.8.7, watir-webdriver 0.0.6.
>
>
> > And can I ask you what's difference between => and , in those context?
>
> Just something cool kids do. :)
>
>
> Željko
>
> --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> You received this message because you are subscribed to
> http://groups.google.com/group/watir-general
> To post: watir-general@googlegroups.com
> To unsubscribe: 
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Željko Filipin
On Wed, Jul 28, 2010 at 4:47 PM, Željko Filipin <
zeljko.fili...@wa-research.ch> wrote:
> browser.cell(:id => "uwmMainMenu_1").click
> browser.cell(:text => "Quick").click

This works with watir gem on Windows with IE6.

browser.cell(:id => "uwmMainMenu_1").fire_event "onfocus"
# search menu appears

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Željko Filipin
On Wed, Jul 28, 2010 at 5:54 PM, Chan Nguyen  wrote:
> I don't have Watir-webdriver installed.

What are you waiting for? :)

http://zeljkofilipin.com/2010/01/12/watir-on-webdriver/

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Chan Nguyen
I downloaded it. But when I tried, it gave me errors:
C:/Ruby187/lib/ruby/gems/1.8/gems/watir-webdriver-0.0.6/lib/watir-webdriver/exception.rb:8:
superclass mismatch for class UnknownObjectException (TypeError)
from
C:/Ruby187/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in
`gem_original_require'
from
C:/Ruby187/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
from
C:/Ruby187/lib/ruby/gems/1.8/gems/watir-webdriver-0.0.6/lib/watir-webdriver.rb:6
from
C:/Ruby187/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in
`gem_original_require'
from
C:/Ruby187/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `require'
from C:/NetBeans Project/RubyApplication2/lib/main.rb:3

:(

Further, the menu popped up but the "Quick Search" was not clicked.

Thanks,
Chan Nguyen

On Wed, Jul 28, 2010 at 8:57 AM, Željko Filipin <
zeljko.fili...@wa-research.ch> wrote:

> On Wed, Jul 28, 2010 at 5:54 PM, Chan Nguyen  wrote:
> > I don't have Watir-webdriver installed.
>
> What are you waiting for? :)
>
> http://zeljkofilipin.com/2010/01/12/watir-on-webdriver/
>
>
> Željko
>
> --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> You received this message because you are subscribed to
> http://groups.google.com/group/watir-general
> To post: watir-general@googlegroups.com
> To unsubscribe: 
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Željko Filipin
2010/7/28 Chan Nguyen 
>  superclass mismatch

Do not require both watir and watir-webdriver, only one.

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-28 Thread Chan Nguyen
Hi Zeljko,

Got you ;). By the way I got it worked like this:
puts " Step 5 : move mouse over the Searches tab"
browser.cell(:id => "uwmMainMenu_1").fire_event "onfocus"
puts " Step 6 : click on Quick Search "
browser.cell( :text => "Quick" ).fire_event "onmousedown"
browser.cell( :text => "Quick" ).fire_event "onmouseup"

Can I ask you about :text property? In the worst scenario without any
information about element, you have to use :text? How about when we have
exactly the same text in a page? What can we do?

Thanks,
Chan Nguyen

On Wed, Jul 28, 2010 at 9:13 AM, Željko Filipin <
zeljko.fili...@wa-research.ch> wrote:

> 2010/7/28 Chan Nguyen 
> >  superclass mismatch
>
> Do not require both watir and watir-webdriver, only one.
>
>
> Željko
>
> --
> Before posting, please read http://watir.com/support. In short: search
> before you ask, be nice.
>
> You received this message because you are subscribed to
> http://groups.google.com/group/watir-general
> To post: watir-general@googlegroups.com
> To unsubscribe: 
> watir-general+unsubscr...@googlegroups.com
>

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-29 Thread Željko Filipin
Back to the original topic of this thread. :)

http://stackoverflow.com/questions/3359710/how-to-timeout-a-page-loading-in-watir

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-30 Thread Željko Filipin
http://stackoverflow.com/questions/3368703/how-to-make-a-tab-expend

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-07-30 Thread Željko Filipin
On Fri, Jul 30, 2010 at 12:28 PM, Jarmo Pertman  wrote:
> Page not found...

Looks like the question is deleted.

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-02 Thread Željko Filipin
http://stackoverflow.com/questions/3378437/watir-set-text-field-value-instantly-without-emulated-typing
http://stackoverflow.com/questions/3372804/trouble-find-elements-with-firewatir-on-a-jquery-created-page

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-03 Thread Željko Filipin
http://stackoverflow.com/questions/3386318/how-to-block-images-in-watir

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-06 Thread Željko Filipin
http://stackoverflow.com/questions/3413174/watir-firewatir-url-consistency

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-09 Thread Željko Filipin
http://stackoverflow.com/questions/3434672/watir-how-to-access-a-table-without-an-id-or-name

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-11 Thread Željko Filipin
http://stackoverflow.com/questions/3451898/does-watir-recognize-meta-html-element

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-24 Thread Željko Filipin
The newest questions are listed here:

http://stackoverflow.com/questions/tagged?tagnames=watir&sort=newest&pagesize=15

The feed is here:

http://stackoverflow.com/feeds/tag/watir

And the most recent questions are:

http://stackoverflow.com/questions/3480669/watir-magic-escape-sequence
http://stackoverflow.com/questions/3503836/selenium-vs-celerity
http://stackoverflow.com/questions/3504322/watir-webdriver-wait-for-page-load
http://stackoverflow.com/questions/3525364/selecting-a-dropdown-option-with-no-attributes-with-watir
http://stackoverflow.com/questions/3537022/how-to-click-a-tab-button
http://stackoverflow.com/questions/3541275/watir-ruby-how-to-get-the-text-of-the-selected-item-in-a-drop-down-list
http://stackoverflow.com/questions/3553114/firewatir-error-when-installing-firewatir-on-windows
http://stackoverflow.com/questions/3553719/how-to-access-td-tag-and-innertext-of-a-web-page

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-24 Thread Željko Filipin
I have added "Watir at Stack Overflow" to watir.com, showing 3 most recent
questions tagged Watir, like we have for Twitter and Google blog search.

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-26 Thread Željko Filipin
I am glad to see new questions posted to Stack Overflow almost every day:

http://stackoverflow.com/questions/3573272/undefined-method-document-for-nilnilclass
http://stackoverflow.com/questions/3570359/automating-a-form-post-in-firefox

Željko

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-30 Thread Željko Filipin
http://stackoverflow.com/questions/3598339/variable-scope-with-in-different-ruby-file
http://stackoverflow.com/questions/3597118/can-you-deploy-watir-on-heroku-to-generate-html-snapshots-if-so-how

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-08-31 Thread Željko Filipin
http://stackoverflow.com/questions/3602466/firefox-and-watir-wouldnt-work-on-windows-due-to-a-singularize-method-not-found

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-01 Thread Željko Filipin
http://stackoverflow.com/questions/3614865/firewatir-firewatir-returns-undefined-method-error-in-eclipse
http://stackoverflow.com/questions/3608515/jssh-telnet-fails-even-after-installing-the-add-on-on-linux

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-02 Thread Željko Filipin
http://stackoverflow.com/questions/3624359/issues-with-link-on-watir-and-safari

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-02 Thread Željko Filipin
http://stackoverflow.com/questions/602069/autocomplete-dropdown-test-with-ruby-watir

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-02 Thread Željko Filipin
http://stackoverflow.com/questions/3626789/is-it-possible-to-open-a-new-tab-in-watir-webdriver

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-06 Thread Željko Filipin
http://stackoverflow.com/questions/3643179/failed-watir-installation-server-2003

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-07 Thread Željko Filipin
http://stackoverflow.com/questions/3652582/alert-box-in-waitr-webdriver

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-09 Thread Željko Filipin
http://stackoverflow.com/questions/3674706/need-to-handle-webpage-dialog-using-watir

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-13 Thread Željko Filipin
http://stackoverflow.com/questions/3688515/watir-how-do-drive-outlook-web-access

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-13 Thread Željko Filipin
http://stackoverflow.com/questions/3697646/rails-app-using-selenium-but-not-for-testing-how-to-organize

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-13 Thread Željko Filipin
http://stackoverflow.com/questions/3701079/installing-watir-web-driver-on-fedora-linux

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-15 Thread Željko Filipin
http://stackoverflow.com/questions/3710550/issue-retrieving-custom-attribute

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-21 Thread Željko Filipin
http://stackoverflow.com/questions/3754665/firewatir-firewatir-is-not-opening-firefox

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-24 Thread Željko Filipin
http://stackoverflow.com/questions/3787555/how-to-find-out-which-javascript-events-fired

-- 
Before posting, please read http://watir.com/support. In short: search before 
you ask, be nice.

You received this message because you are subscribed to 
http://groups.google.com/group/watir-general
To post: watir-general@googlegroups.com
To unsubscribe: watir-general+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-27 Thread Željko Filipin
http://stackoverflow.com/questions/3789425/how-can-i-have-watir-recognize-an-input-tag-with-a-custom-class

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-09-29 Thread Željko Filipin
http://stackoverflow.com/questions/3810404/onclick-event-does-not-work-for-editbox-in-firewatir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-01 Thread Željko Filipin
http://stackoverflow.com/questions/3829096/run-web-testing-framework-watir-on-firefox-linux

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-05 Thread Željko Filipin
http://stackoverflow.com/questions/3861871/can-i-use-watir-to-scrape-data-from-a-website-on-a-linux-server-without-monitor
http://stackoverflow.com/questions/3859769/full-and-true-automation-with-watir-and-autoit

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-06 Thread Željko Filipin
http://stackoverflow.com/questions/3867703/how-can-i-get-click-events-to-work-when-chaining-elements-in-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-07 Thread Željko Filipin
http://stackoverflow.com/questions/3878965/abnormal-termination-running-an-rspec-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+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-11 Thread Željko Filipin
http://stackoverflow.com/questions/3894952/how-to-click-a-button-element-in-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-12 Thread Željko Filipin
http://stackoverflow.com/questions/3909260/does-watir-work-with-ironrubyor-net-in-any-other-way
http://stackoverflow.com/questions/3905209/click-on-popup-linux

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-13 Thread Željko Filipin
http://stackoverflow.com/questions/3917253/firewatir-firewatir-scripts-to-select-a-item-from-the-drop-down

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-18 Thread Željko Filipin
http://stackoverflow.com/questions/3951084/how-do-i-get-at-image-title-attributes-in-watir
http://stackoverflow.com/questions/3949499/html-table-to-array-ruby
http://stackoverflow.com/questions/3946248/watir-can-i-open-the-file-explorer-from-file-fields
http://stackoverflow.com/questions/3937816/ruby-watir-failed-to-get-ienum-interface
http://stackoverflow.com/questions/3936541/watir-excel-call-not-working-on-virtual-machine
http://stackoverflow.com/questions/3932854/adding-a-stylesheet-declaration-to-ci-reporter-xml-files-automatically
http://stackoverflow.com/questions/3930830/click-at-a-scrollable-data-table-with-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-20 Thread Željko Filipin
http://stackoverflow.com/questions/3978849/define-page-url-in-taza

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-21 Thread Željko Filipin
http://stackoverflow.com/questions/3983827/watir-how-can-i-fetch-the-errors-it-displays-after-running-a-test-script-and-pla
http://stackoverflow.com/questions/3980001/using-watir-to-control-multiple-firefox-instances
http://stackoverflow.com/questions/3980769/how-to-get-watir-to-return-actual-html-when-site-redirects/3981036#3981036

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-10-27 Thread Željko Filipin
http://stackoverflow.com/questions/4027026/firewatir-firewatir-dynamic-drop-down-issue

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-11-10 Thread Željko Filipin
http://stackoverflow.com/questions/4143410/planning-to-adopt-watir-for-our-ui-testing-needs-is-it-the-right-tool

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-11-10 Thread Željko Filipin
http://stackoverflow.com/questions/4140749/watir-script-called-within-a-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+unsubscr...@googlegroups.com


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-11-15 Thread Željko Filipin
http://stackoverflow.com/questions/4177698/is-there-a-way-to-use-watir-to-open-a-link-in-a-new-tab-or-window-in-firefox
http://stackoverflow.com/questions/4177070/i-want-to-calculate-the-page-load-time-in-watir-or-selenium

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-11-24 Thread Željko Filipin
http://stackoverflow.com/questions/4264089/how-to-record-ssis-reports-in-ruby-watir
http://stackoverflow.com/questions/4264210/how-to-select-a-value-from-dropdown
http://stackoverflow.com/questions/4264531/watir-web-testing-is-not-working-if-the-site-is-taking-some-time-to-load

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-11-29 Thread Željko Filipin
http://stackoverflow.com/questions/4295002/triggering-firewatir-actions-from-different-ruby-scripts-on-the-same-browser-wind

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-12-06 Thread Željko Filipin
http://stackoverflow.com/questions/4356281/how-do-i-use-watirwaiterwait-until-to-force-chrome-to-wait

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2010-12-31 Thread Željko Filipin
http://stackoverflow.com/questions/4568423/not-able-to-install-watir-gem

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-03 Thread Željko Filipin
http://stackoverflow.com/questions/4572753/getting-the-error-msvcrt-ruby18-dll-is-missing-when-running-watir-scripts-after
http://stackoverflow.com/questions/4576095/how-to-create-arrays-from-show-links-show-tables-show-images-show-divs-that-ca

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-11 Thread Željko Filipin
http://stackoverflow.com/questions/4618478/visual-analysis-of-web-pages-in-ruby
http://stackoverflow.com/questions/4629634/simple-watir-commands-in-cucumber-and-in-irb-produce-different-results
http://stackoverflow.com/questions/4643978/read-only-text-field
http://stackoverflow.com/questions/4639414/problem-with-firewatir-requiring-different-version-of-activesupport
http://stackoverflow.com/questions/4651825/using-firewatir-with-ubuntu-for-download-testing

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-12 Thread Željko Filipin
http://stackoverflow.com/questions/4661400/it-seems-as-though-firewatir-is-not-being-found-when-trying-to-run-my-script
http://stackoverflow.com/questions/4664155/how-to-handle-tinymce-when-automating-with-watir-webdriver

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-13 Thread Željko Filipin
http://stackoverflow.com/questions/4675500/if-there-are-two-links-with-the-same-element-name-but-are-on-different-forms-of-a

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-14 Thread Željko Filipin
http://stackoverflow.com/questions/4688049/how-can-i-make-a-variable-out-of-an-id-that-is-made-after-the-item-using-the-id-i

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-20 Thread Željko Filipin
http://stackoverflow.com/questions/4734681/watir-problem-econnaborted
http://stackoverflow.com/questions/4736124/firewatir-button-does-not-click-no-error
http://stackoverflow.com/questions/4739953/using-celerity-to-login-to-saleforce-com-on-linux-w-no-gui-js-vb-errors
http://stackoverflow.com/questions/4735499/can-i-relatively-easily-test-zk-interfaces-in-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-21 Thread Željko Filipin
http://stackoverflow.com/questions/4755946/run-watir-on-a-client-browser

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-21 Thread Željko Filipin
http://stackoverflow.com/questions/4756905/clearing-session-in-firefox-for-every-request-made-watir-issue

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-24 Thread Željko Filipin
http://stackoverflow.com/questions/4758928/watir-looking-for-a-more-elegant-solution-for-html-element-checking

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-25 Thread Željko Filipin
http://stackoverflow.com/questions/4789661/using-xpath-with-firewatir
http://stackoverflow.com/questions/4786970/ruby-watir-cant-find-the-assert-method-outside-of-the-running-class

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-01-27 Thread Željko Filipin
http://stackoverflow.com/questions/4807016/running-the-watir-test-suite

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-01 Thread Željko Filipin
http://stackoverflow.com/questions/4853171/watir-how-to-open-a-set-of-webpages-in-multiple-tabs-in-ie9-or-ff-or-chrome

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-04 Thread Željko Filipin
http://stackoverflow.com/questions/4893923/weird-problems-with-reopening-ruby-classes

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-07 Thread Željko Filipin
http://stackoverflow.com/questions/4918596/unable-to-install-watir-on-windows

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-08 Thread Željko Filipin
http://stackoverflow.com/questions/4922992/how-to-set-the-url-of-a-link-to-a-variable-using-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-09 Thread Željko Filipin
http://stackoverflow.com/questions/4938062/using-watir-on-peoplesoft-app-each-text-field-reloads-the-page

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-11 Thread Željko Filipin
http://stackoverflow.com/questions/4961202/in-ruby-watir-webdriver-trying-to-call-method-of-one-class-into-another-class

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-15 Thread Željko Filipin
http://stackoverflow.com/questions/5000164/firewatir-textfield-set-very-slow
http://stackoverflow.com/questions/4995393/tests-using-webdriver-with-remote-htmlunit-having-redirect-issues-when-logging-in
http://stackoverflow.com/questions/4999459/how-to-use-watir-with-javascript-triggered-elements

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-22 Thread Željko Filipin
http://stackoverflow.com/questions/5017672/watir-with-autoit-tutorial
http://stackoverflow.com/questions/5022578/whats-the-best-way-to-programatically-perform-stock-check-for-an-ikea-store
http://stackoverflow.com/questions/5035762/watir-cant-locate-frame-which-houses-an-element-in-firefox-but-works-fine-in-ie
http://stackoverflow.com/questions/5054782/set-up-cucumber-to-test-sinatra-app-using-watir
http://stackoverflow.com/questions/5057353/watir-hangs-after-chrome-asks-do-you-want-google-to-save-your-password

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-23 Thread Željko Filipin
http://stackoverflow.com/questions/5085355/problem-connecting-to-localhost-with-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-02-25 Thread Željko Filipin
http://stackoverflow.com/questions/5094108/jquery-watir-event-handlers-not-working
http://stackoverflow.com/questions/5116950/finding-sibling-of-a-link-while-using-watir-webdriver

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-01 Thread Željko Filipin
http://stackoverflow.com/questions/5148602/in-firewatir-how-can-i-interact-with-the-firefox-print-dialog
http://stackoverflow.com/questions/5145936/selectlist-not-triggering-page-reload-for-watir-and-ie

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-02 Thread Željko Filipin
http://stackoverflow.com/questions/5159967/in-watir-how-can-i-interact-with-an-element-that-is-initially-hidden/

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-02 Thread Željko Filipin
On Tue, Mar 1, 2011 at 7:57 PM, Chuck van der Linden 
wrote:
> answered

Thanks. It is not a secret that I would like to move (most of) support to
Stack Overflow. :)

Željko

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-03 Thread Željko Filipin
http://stackoverflow.com/questions/5174637/in-watir-how-can-i-access-the-data-inside-a-dd

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-04 Thread Željko Filipin
http://stackoverflow.com/questions/5180836/watir-working-with-css-elements

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-07 Thread Željko Filipin
http://stackoverflow.com/questions/5209074/printing-with-ruby-in-firefox

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-09 Thread Željko Filipin
http://stackoverflow.com/questions/5223226/watirwait-until-not-working-with-frames
http://stackoverflow.com/questions/5227610/ruby-loop-question
http://stackoverflow.com/questions/5230068/how-to-set-up-qa-automation-framework-with-ruby-watir-and-cucumber

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-10 Thread Željko Filipin
http://stackoverflow.com/questions/5256075/firewatir-problems-changing-selection-in-select-list

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-14 Thread Željko Filipin
http://stackoverflow.com/questions/5285776/how-do-i-check-for-text-inside-a-div

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-16 Thread Željko Filipin
http://stackoverflow.com/questions/5317433/ruby-stops-after-first-loop

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-16 Thread Željko Filipin
On Wed, Mar 16, 2011 at 6:25 PM, Chuck van der Linden 
wrote:
>  a) what he's trying to do specifically violates the terms of service
> for the site he linked in his code. (cramster)

Thanks for letting us know.

Ž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

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-21 Thread Željko Filipin
http://stackoverflow.com/questions/5359556/unable-to-find-method-for-detecting-if-element-exists-on-a-page
http://stackoverflow.com/questions/5358518/how-to-detect-if-an-element-exists-in-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-22 Thread Željko Filipin
http://stackoverflow.com/questions/5381157/alternatives-to-firewatir-working-with-firefox-4

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-25 Thread Željko Filipin
http://stackoverflow.com/questions/5426534/getting-position-of-item-in-watir-using-either-autoitx3-control-or-pure-watir
http://stackoverflow.com/questions/5415610/cant-load-firewatir-gem-in-rails-3

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-28 Thread Željko Filipin
http://stackoverflow.com/questions/5440825/browser-contentdocument-is-undefined-jsshsocketjstypeerror-when-popup-is-clos
http://stackoverflow.com/questions/5440669/watir-browser-attach-overwrites-previous-browser-object

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-29 Thread Željko Filipin
http://stackoverflow.com/questions/5468343/logging-in-to-test-site-with-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-30 Thread Željko Filipin
http://stackoverflow.com/questions/5479415/radio-buttons-in-watir-firefox-webdriver
http://stackoverflow.com/questions/5473354/firefox-4-setting-always-save-csv-with-watir-webdriver

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-03-31 Thread Željko Filipin
http://stackoverflow.com/questions/5485168/unable-to-generate-xml-results-with-ci-reporter-using-watir

-- 
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


Re: [wtr-general] Re: Recent Stack Overflow Questions Tagged Watir

2011-04-01 Thread Željko Filipin
http://stackoverflow.com/questions/5499437/is-there-a-way-to-connect-to-a-h2-database-from-ruby-without-jruby

-- 
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