blob: acb0d4b3f3320e2f562d095dae16be124130aebc [file] [log] [blame] [edit]
using NUnit.Framework;
using System.Threading;
namespace Selenium.Tests
{
[TestFixture]
public class TestFunkyEventHandling : SeleniumTestCaseBase
{
[Test]
public void ShouldBeAbleToHandleFunkyEventHandling()
{
selenium.Open("../tests/html/test_funky_event_handling.html");
selenium.Click("clickMe");
Thread.Sleep(1000);
Assert.IsFalse(selenium.IsTextPresent("You shouldn't be here!"));
}
}
}