Exemple #1
0
        public void TestClearHistory()
        {
            BrowserStandard browser = new BrowserStandard();

            browser.Navigate("http://google.com");
            Assert.True(browser.History.Count == 1);
            browser.ClearHistory();
            Assert.True(browser.History.Count == 0);
        }