以下基本上就是我所做的。这正是示例所说的,但是当我运行它时它不会访问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";
}
}
}
答案 0 :(得分:0)
下面的行不会工作:
driver.Url = @"http://www.facebook.com";
请改为尝试:
driver.Navigate().GoToUrl(@"http://www.facebook.com");