From: Pradeepta Swain Date: 2008-06-30T12:43:51+09:00 Subject: Re: watir , access is denied Kyle Schmitt wrote: > Well, show us the code :) > Otherwise there's little we can do. here is the code that i'm using 2 access a frame require 'watir' include Watir require 'test/unit' class TC_recorded < Test::Unit::TestCase def test_recorded ie = IE.new ie.goto('http://www.ft.com/home/us') ie.frame(:id,'ftsubscribe').text_field(:id, "name").set('siddth09@rediffmail.com') ie.frame(:id,'ftsubscribe').text_field(:id, "password").set('siddth') ie.close end end please help me . i have tried all possible measures written at watir site , but still i m getting the same error . -- Posted via http://www.ruby-forum.com/.