blob: 91c8106eef6fd66f818e86f7369deba749b9e00e [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 TestQuickOpen : SeleniumTestCaseBase
{
[Test]
public void ShouldBeAbleToQuickOpen()
{
// <tr>
// <td>setTimeout</td>
// <td>5000</td>
// <td>&nbsp;</td>
// </tr>
selenium.Open("../tests/html/test_open.html");
selenium.Open("../tests/html/test_page.slow.html");
Assert.IsTrue(selenium.IsTextPresent("This is a slow-loading page"));
}
}
}