blob: 2543fb3b1a07c4d4fe0d58f7b24a5b978ce74cc1 [file] [log] [blame]
using System;
using System.Collections.Generic;
using System.Text;
using NUnit.Framework;
using System.Text.RegularExpressions;
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!"));
}
}
}