[wtr-general] Re: Watir Podcast #45: Bret Pettichord’s Opening Keynote at Selenium Conference 2011

2011-05-24 Thread Super Kevy
Meeting the enemy.  I found this at the tcqaa.org site.  LOL Bret does
this look like a familiar sales tactic.  I'm not sure how they came up
with their costs but ces't lie vie

tcqaa.org/documents/VIP_Selenium_v_QTP_TCQAAPublic.pptx

or on Google docs

http://docs.google.com/viewer?a=v&q=cache:kgqsaTH982EJ:tcqaa.org/documents/VIP_Selenium_v_QTP_TCQAAPublic.pptx+tcqaa+org&hl=en&gl=us&pid=bl&srcid=ADGEESihHxY__2gV2RrRmVnkaaSGBcf5ON1ihkoGIkHFHxc-VPXI4tenTtbGHmn6xspK7yospeY09Q8_UtCBEGWm-fxMEGfjRs03pWAPVgjEF6bIcw2_r_cUjegHOa79HmCn_h4dzBJh&sig=AHIEtbT4_Cun2ca9w_avwX2s8qNkVoTVqg&pli=1



On May 18, 11:27 am, Željko Filipin 
wrote:
> http://watirpodcast.com/45-bret-pettichords-opening-keynote-at-seleni...
>
> Željko
> --
> watir.com - community manager
> watir.com/book - author
> watirpodcast.com - host
> viaqa.mobi conference on software testing - organizer

-- 
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] type-ahead select lists

2011-05-24 Thread Lisa Crispin
I tried the log events thing, it's nice to know about that, but I don't see
anything that really looks like the JS firing. I see a lot of 'select',
'click' 'keydown', 'input', 'keypress', 'keyup', none of that looks like
what the JS is doing with the type ahead.
-- LIsa

On Mon, May 23, 2011 at 2:36 PM, Željko Filipin <
zeljko.fili...@wa-research.ch> wrote:

> On Mon, May 23, 2011 at 9:44 PM, Lisa Crispin 
> wrote:
> > We are changing what used to be regular drop-down select list boxes to a
> dojo widget thingie that allows type ahead to select the item.
>
> Is the page public? Or a similar page? Frameworks usually have examples
> somewhere online.
>
> If you think the only problem is that a JavaScript event is not fired (by
> Watir), take a look at this:
>
>
> http://stackoverflow.com/questions/3787555/how-to-find-out-which-javascript-events-fired
>
> If the site is not public, but you could show it to me, contact me off
> list.
>
> Željko
> --
> watir.com - community manager
> watir.com/book - author
> watirpodcast.com - host
> viaqa.mobi conference on software testing - organizer
>
>
>
>  --
> 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
>



-- 
Lisa Crispin
Co-author with Janet Gregory, _Agile Testing: A Practical Guide for Testers
and Agile Teams_ (Addison-Wesley 2009)
Contributor to _Beautiful Testing_ (O'Reilly 2009)
http://lisacrispin.com
@lisacrispin on Twitter
http://entaggle.com/lisacrispin

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


[wtr-general] veri complex think : how to access table body elements; how to click on a row

2011-05-24 Thread a b
Hi all,

do you know if we have table body support for Firefox on watir?
I  try to use that sample
"

$ie.table(:id, "myGrid").body(:index, 1).each do | row |
  row.each do | cell |
## todo: figure out if this contains a sort link
## todo: click the link now, or save a reference for later?
  end
end

"

but on firefox nothing happen.


I am into a complex scenario. I have an dynamic table body generated.
First cell is all the time a check box, when i enable it i can delete that
row.
When I click anywhere else on the row a new frame is opened.


Here is page code; also I've attached the file


  

  

 

Date
[bulletin]
Sticky
Last
posted





Friday, May 13, 2011 10:38:19 AM
a
T




  
Thursday, May 19, 2011 10:21:38 AM
1305814892
T




Thursday, May 19, 2011 10:21:52
AMrTThursday, May 12,
2011 10:24:01 AM1305210159FThursday, May 12, 2011 11:26:46
AM1305214000FThursday, May 12, 2011 1:35:52
PM1305221746FFriday, May 13, 2011 10:37:29
AM1305297438F



Million thanks in advance.

Cristina

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


   

 
   
Date   

[bulletin]  
Sticky   
Last 
posted 
   




Friday, May 13, 2011 10:38:19 AM
a
T




  
Thursday, May 19, 2011 10:21:38 AM
1305814892
T




Thursday, May 19, 2011 10:21:52 
AMrTThursday, May 12, 2011 
10:24:01 AM1305210159FThursday, May 
12, 2011 11:26:46 AM1305214000FThursday, May 12, 2011 1:35:52 
PM1305221746FFriday, May 13, 
2011 10:37:29 
AM1305297438F  

Re: [wtr-general] Re: The simplest Log

2011-05-24 Thread Dave McNulla
You can use a this xml option in the testrunner:
http://systir.rubyforge.org/classes/Test/Unit/UI/XML/TestRunner.html
$ ruby -rtest/unit/ui/xml/testrunner test/test_1.rb --runner=xml

You can open that with a number of products that would allow you to get down 
to the basics (excel, access, probably some open-office.org products, etc.). 
There is plenty of stuff to research if you want more options.

Good luck,

Dave

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


[wtr-general] Somewhat philosophical question about persistence of Watir's page object variables...

2011-05-24 Thread Abe Heward
So, I navigate to a page on my test site and define a bunch of variables as 
page objects, like so:

site_name = browser.text_field(:id, "sitename")
site_url = browser.text_field(:id, "url")
etc. ...

I then navigate to a new page with a browser.goto. On the new page I define 
some additional variables, like so:

campaign_name = browser.text_field(:id, "campname")
etc. ...

However, if I now want to get a site_name.value it turns out that it's 
empty.

In some sense I can understand why this is the case, but in others I can't.

Can someone explain the thinking behind the decision that led to Watir being 
built this way?

I can easily switch my variable definitions to look like this:

site_name = browser.text_field(:id, "sitename").value

... but that seems to rob me of a lot of the flexibility (and code 
readability) that Watir has to offer.

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


[wtr-general] How to read the HTTP response header and response contents?

2011-05-24 Thread Amit Bobade
*Dear All:*

I am okay with reading the HTTP response code.
But could somebody tell me that-  How to read the HTTP response header and
response contents?

Thanks in advance.

-- 
Thanks and Regards,
Amit

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