Firefox URL无法使用Selenium

时间:2017-04-04 12:56:06

标签: c# selenium url

以下基本上就是我所做的。这正是示例所说的,但是当我运行它时它不会访问URL。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;

namespace TestApp.Selenium_Basics
{
    class TestExercise01
    {
        public void TestExercise01Run()
        {
            IWebDriver driver = new FirefoxDriver();

            driver.Url = @"http://www.facebook.com";
        }
    }
}

1 个答案:

答案 0 :(得分:0)

下面的行不会工作:

driver.Url = @"http://www.facebook.com"; 

请改为尝试:

driver.Navigate().GoToUrl(@"http://www.facebook.com");