Questions tagged [windows-services]

Windows services, also known as background processes, are executed by the Service Control Manager specifically on Windows NT operating systems. They can be likened to daemons or services in UNIX environments.

Is it possible to execute Selenium system tests without the need to launch the browser?

Created a test method using Selenium that resembles the following: [TestFixture] public class Test_Google { IWebDriver driver; [SetUp] public void Setup() { driver = new InternetExplorerDriver(); } ...