blob: 588170f02458f9ae855eec285185883ebc4c9f7a [file] [log] [blame] [edit]
using NUnit.Framework;
namespace Selenium.Tests
{
[TestFixture]
public class TestEval : SeleniumTestCaseBase
{
[Test]
public void ShouldAllowEval()
{
selenium.Open("../tests/html/test_open.html");
Assert.AreEqual(selenium.GetEval("window.document.title"), "Open Test");
}
}
}