You might try looking at the DOM that's output with IE developer toolbar:
http://www.microsoft.com/downloads/details.aspx?FamilyID=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en

This is what Watir and the end user are seeing. The asp code is still
sending html output to the browser.

Microsoft uses a lot of  asp to create their pages and frame contents:

require 'watir'
include Watir

ie = IE.start('http://support.microsoft.com/kb/196340')
puts ie.frame(:index, 1).html

That'll output the html from the asp page in the first frame.

-Charley

On 2/21/07, Cylindric <[EMAIL PROTECTED]> wrote:

I'm not sure I understand.  Watir works on the browser, like and
end-user.  It doesn't care if it's ASP, flat HTML, PHP or whatever.  It just
sees the output.

Even if you're using ASP, you'll still have a <frame src=""> structure to
follow, and at some point some HTML to "click" on.  General rule-of-thumb
seems to be that if a user can browse it, Watir can test it.
---------------------------------------------------------------------
Posted via Jive Forums
http://forums.openqa.org/thread.jspa?threadID=6623&messageID=18987#18987
_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

_______________________________________________
Wtr-general mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-general

Reply via email to