我将如何使用C#通过GRID运行Selenium测试

问题描述 投票:1回答:2

我刚刚在我的本地机器上设置了selenium网格,一切似乎都已启动并运行。

我的问题是,有没有办法从selenium网格节点(命令提示符)运行测试用例?

我使用WebDriver使用.Net创建我的测试用例

selenium selenium-webdriver selenium-grid
2个回答
0
投票

示例代码来自here

using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;

// Requires reference to WebDriver.Support.dll
using OpenQA.Selenium.Support.UI;

class GoogleSuggest
{
    static void Main(string[] args)
    {
        // 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.
        WebDriver driver = new RemoteWebDriver(new Uri("http://127.0.0.1:4444/wd/hub"),
        DesiredCapabilities.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();
    }
}

0
投票
WebDriver driver = new RemoteWebDriver(new Uri("http://127.0.0.1:4444/wd/hub"),
        DesiredCapabilities.FirefoxDriver());

OR in c#

IWebDriver driver;    
DesiredCapabilities capability = new DesiredCapabilities();      
driver = new RemoteWebDriver(
new Uri("http://hub-cloud.com/wd/hub/"), capability);    
driver.Navigate().GoToUrl("http://www.google.com");    
© www.soinside.com 2019 - 2024. All rights reserved.