Saturday, May 14, 2011

Web Application Testing in Ruby

Web Application Testing in Ruby

Why do I get an access denied error when trying to access a frame?
This error message is due to Internet Explorer's attempt to prevent cross-window domain scripting (also known as cross-site scripting, or XSS). For security reasons, IE prevents embedded code in one frame from accessing another if the frame contents come from different domains. Watir runs into the same barriers when you attempt to navigate from a page hosted from one site to a frame hosted by another.

You may try one or more of the following methods to resolve this issue:

Navigate directly to the subframe (and the server that hosts it). That is, instead of having your script click on the link, use ie.goto("http://www.thenewsite.com/framecontents.html").
Add the particular host to the Internet Explorer Trusted Sites list. From IE's menu bar, choose Tools / Internet Options; click on the Security tab; click on the Trusted Sites icon; click on the Sites... button; type the name of the site into the field labelled "Add this Web site to the zone:". You may need to uncheck the box labelled "Require server verification ( https: ) for all sites in this zone." Click OK to finish the process.
Create an alias in the hosts file. This text file is typically in the folder c:\windows\system32\drivers\etc. Add a line in the form
192.168.10.32 foosystem

Replace 192.168.10.32 with the IP address of the host that is serving up the frame contents. Then access the frame using https://foosystem/testsystem.
Set Internet Explorer to its lowest possible security setting. From IE's menu bar, choose Tools / Internet Options; click on the Security tab; click on the Default Level button, and slide the slider to the Low setting; then click on OK to finish the process.
Watir 1.4 If none of these work, and you are still getting annoying error messages about Access Denied when your scripts run, you can turn off these warnings.

ie.logger.level = Logger::ERROR

No comments:

Post a Comment