Skip to content
This repository has been archived by the owner on Jun 6, 2018. It is now read-only.
Justin Ko edited this page Jun 29, 2013 · 1 revision

Many web applications use frames. If you are having trouble accessing objects on a web page, be sure to check to see if the application is using frames. To find out, view the source of the page and look for or <iframe> HTML tags. It will look something like this:

<frameset cols=<span class="code-quote">"*,*"></span>
  <frame src=<span class="code-quote">"menu.htm" name="menu"></span>
  <frame src=<span class="code-quote">"main.htm" name="main"></span>
</frameset>

In the HTML above, we have a menu frame on the left and a main frame on the right.

Watir allows access to frame and iframe objects by identifying them by the attributes available in the HTML tag or by frame's index. Common attributes are id, name and src.

name Attribute

Watir code to access a frame using name attribute:

ie.frame(:name, "menu")

To access individual objects within that frame, you prefix the object using the Watir code above. If we had a link in the menu frame:

<a href=<span class="code-quote">"index.htm"></span>Click Menu Item</a>

we could click it like this:

ie.frame(:name, "menu").link(:text, "Click Menu Item").click

Nested Frames

Sometimes a web page that is referenced by the tag is also a page that contains a tag. This is a nested frame. To deal with this, simply access the nested frame like this:

ie.frame(:name, "frame").frame(:name, "nested_frame")

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:

  1. 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").
  2. 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.
  3. 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.
  4. 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.

Microsoft Reference: For background information about the security rules that cause this problem, see About Cross-Frame Scripting and Security