Note that there are some explanatory texts on larger screens.

plurals
  1. POSelenium WebDriver with Jenkins
    primarykey
    data
    text
    <p>I'm looking into using Selenium WebDriver with Jenkins. We have a Jenkins server running under Windows Server 2008 and would like to run all my test cases and I'm using mstest and also i have installed VS on the windows server... Here is the list of plugin I have installed on my server:</p> <pre><code>Selenium Auto Exec Server(AES) plugin This plugin is for continuous regression test by Selenium Auto Exec Server (AES). 0.5 Jenkins Selenium Builder plugin 1.1 Hudson Seleniumhq plugin This plugin integrates Seleniumhq to Hudson. 0.4 Selenium HTML report 0.94 SeleniumRC plugin This plugin allows you to create Selenium server instance for each project build. 1.0 </code></pre> <p>Are there any plugins to installed on Jenkins?</p> <p><strong>EDIT</strong></p> <p>This is what I am using to instantiated my driver, do I have to use <code>RemoteDriver</code>?</p> <pre><code>public static IWebDriver GetDriver() { string _url = new Uri(Common.Url).DnsSafeHost.ToString(); switch (Common.BrowserSelected) { case "ff": FirefoxProfile profile = new FirefoxProfile(); profile.SetPreference("network.http.phishy-userpass-length", 255); profile.SetPreference("network.automatic-ntlm-auth.trusted-uris", _url); drv = new FirefoxDriver(profile); break; case "ie": var options = new InternetExplorerOptions(); options.IntroduceInstabilityByIgnoringProtectedModeSettings = true; DesiredCapabilities capabilities = new DesiredCapabilities(); capabilities.SetCapability(CapabilityType.AcceptSslCertificates, true); drv = new InternetExplorerDriver(options); break; case "chrome": //_driver = new ChromeDriver(); break; } return drv; } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload