Esempio n. 1
0
        public void TestConnectFirefox()
        {
            Browser app    = new Browser();
            bool    result = app.Connect(new FirefoxDriver());

            Assert.True(result);
        }
Esempio n. 2
0
        public void TestConnectIE()
        {
            Browser app    = new Browser();
            bool    result = app.Connect(new InternetExplorerDriver());

            Assert.True(result);
        }
Esempio n. 3
0
        public void TestConnectChrome()
        {
            Browser app    = new Browser();
            bool    result = app.Connect(new ChromeDriver());

            Assert.True(result);
        }