2012-07-05 57 views
0

我的解决方案Web和SeleniumTests是单元测试项目中的两个项目。如何从基于硒的单元测试项目访问Web项目?

我的TestClass用下面的方法:

[TestMethod] 
public void Demo1() 
{ 
    // Create a new instance of the Firefox driver. 

    // Notice that the remainder of the code relies on the interface, 
    // not the implementation. 

    // Further note that other drivers (InternetExplorerDriver, 
    // ChromeDriver, etc.) will require further configuration 
    // before this example will work. See the wiki pages for the 
    // individual drivers at http://code.google.com/p/selenium/wiki 
    // for further information. 
    IWebDriver driver = new FirefoxDriver(); 

    //Notice navigation is slightly different than the Java version 
    //This is because 'get' is a keyword in C# 
    driver.Navigate().GoToUrl("http://www.google.com/"); 

    // Find the text input element by its name 
    IWebElement query = driver.FindElement(By.Name("q")); 

    // Enter something to search for 
    query.SendKeys("Cheese"); 

    // Now submit the form. WebDriver will find the form for us from the element 
    query.Submit(); 

    // Google's search is rendered dynamically with JavaScript. 
    // Wait for the page to load, timeout after 10 seconds 
    WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10)); 
    wait.Until((d) => { return d.Title.ToLower().StartsWith("cheese"); }); 

    // Should see: "Cheese - Google Search" 
    System.Console.WriteLine("Page title is: " + driver.Title); 

    //Close the browser 
    driver.Quit(); 
} 

一切都很好,但在现实世界中,我不希望访问Google.com,但Web项目的某一页。是否有访问它没有明确的书面方式作为URL中driver.Navigate().GoToUrl("http://www.google.com/");

比如我要访问Web项目的〜/ Default.aspx的一种方式。

感谢

回答

0

当你调用GoToUrl()你必须通过一个有效的URL。 “〜/ Default.aspx”不是有效的HTTP URL。

相关问题