public void IISIntegrationTest() { String inputId = "ac4"; String updateId = "ac4update"; selenium.Open("http://www.irian.at/selenium-server/tests/html/ajax/ajax_autocompleter2_test.html"); selenium.KeyPress(inputId, "\\74"); Thread.Sleep(500); selenium.KeyPress(inputId, "\\97"); selenium.KeyPress(inputId, "\\110"); Thread.Sleep(500); Assert.AreEqual("Jane Agnews", selenium.GetText(updateId)); selenium.KeyPress(inputId, "\\9"); Thread.Sleep(500); Assert.AreEqual("Jane Agnews", selenium.GetValue(inputId)); }