unrecognized escape sequence ,please resolve it

时间:2016-08-30 04:19:03

标签: c#

using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
namespace UnitTestProject1
{
    [TestClass]
    public class UnitTest1
    {
        ChromeDriver driver = new ChromeDriver();
        [TestMethod]
        public void TestMethod1()
        {
            driver.Navigate().GoToUrl("http:\www.facebook.com");

        }
    }
}

1 个答案:

答案 0 :(得分:0)

使用

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

请注意网址

中的双//

另一种方式是:

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