1 using NUnit.Framework; 2 3 namespace Selenium.Tests 4 { 5 [TestFixture] 6 public class TestEval : SeleniumTestCaseBase 7 { 8 [Test] 9 public void ShouldAllowEval() 10 { 11 selenium.Open("../tests/html/test_open.html"); 12 Assert.AreEqual(selenium.GetEval("window.document.title"), "Open Test"); 13 } 14 } 15 }