如何修复“权限被拒绝访问属性'文档'”?

时间:2011-07-19 04:22:18

标签: c# selenium selenium-rc selenium-webdriver

在尝试使用selenium rc进行自动化测试时遇到了这个问题。我只是按照教程中的步骤进行操作。这是代码(与教程相同):

[TestFixture]
public class SeleniumTest
{
    private ISelenium selenium;
    private StringBuilder verificationErrors;

    [SetUp]
    public void SetupTest()
    {
        selenium = new DefaultSelenium("localhost", 4444, @"*custom D:\Program Files (x86)\Firefox 4\firefox.exe", "http://www.google.com/");
        selenium.Start();
        verificationErrors = new StringBuilder();
    }

    [TearDown]
    public void TeardownTest()
    {
        try
        {
            selenium.Stop();
        }
        catch (Exception)
        {
            // Ignore errors if unable to close the browser
        }
        Assert.AreEqual("", verificationErrors.ToString());
    }

    [Test]
    public void TheGoogleTest()
    {
        selenium.Open("/");
        selenium.Type("lst-ib", "selenium");
        try
        {
            Assert.IsTrue(selenium.IsTextPresent("Selenium - Web Browser Automation"));
        }
        catch (AssertionException e)
        {
            verificationErrors.Append(e.Message);
        }
    }
}

当我运行测试时,我的firefox-5浏览器弹出,网址如下所示:
http://www.google.com/selenium-server/core/RemoteRunner.html?sessionId=507c2d6ec7214587984f0f86148e9ff5&multiWindow=true&baseUrl=http%3A%2F%2Fwww.google.com%2F&debugMode=false

我认为网址应该是 http:// localhost:4444 并更改了网址(剩下的就是其余部分)。现在打开一个selenium页面(右侧有命令)。然后它会打开谷歌页面,但之后没有任何内容。并且nunit向我显示测试用例失败,说明原因:拒绝访问属性“文档”的权限

有什么想法吗?提前谢谢。

1 个答案:

答案 0 :(得分:1)

有人在sqa.stackexchange.com上回答了问题:

我尝试使用"*chrome D:\Program Files (x86)\Firefox 4\firefox.exe"并且似​​乎正在运作。

从提到的链接引用:

  

这里*chrome指的是firefox浏览器并且具有更高的安全性   java脚本安全限制的特权。