Skip to content

Commit

Permalink
Removing IE-specific tests that are covered in common tests for .NET
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Jun 13, 2018
1 parent 5484f95 commit 1a0b1d0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions dotnet/test/ie/IeSpecificTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace OpenQA.Selenium.IE
[TestFixture]
public class IeSpecificTests : DriverTestFixture
{
[Test]
//[Test]
public void KeysTest()
{
List<string> keyComboNames = new List<string>()
Expand Down Expand Up @@ -102,7 +102,7 @@ public void KeysTest()
Assert.IsTrue(passed, errors);
}

[Test]
//[Test]
public void InputOnChangeAlert()
{
driver.Url = alertsPage;
Expand All @@ -111,7 +111,7 @@ public void InputOnChangeAlert()
alert.Accept();
}

[Test]
//[Test]
public void ScrollingFrameTest()
{
try
Expand All @@ -137,7 +137,7 @@ public void ScrollingFrameTest()
}
}

[Test]
//[Test]
public void AlertSelectTest()
{
driver.Url = alertsPage;
Expand All @@ -146,7 +146,7 @@ public void AlertSelectTest()
alert.Accept();
}

[Test]
//[Test]
public void ShouldBeAbleToBrowseTransformedXml()
{
driver.Url = xhtmlTestPage;
Expand All @@ -164,7 +164,7 @@ public void ShouldBeAbleToBrowseTransformedXml()
Assert.AreEqual("We Arrive Here", driver.Title);
}

[Test]
//[Test]
public void ShouldBeAbleToStartMoreThanOneInstanceOfTheIEDriverSimultaneously()
{
IWebDriver secondDriver = new InternetExplorerDriver();
Expand All @@ -179,7 +179,7 @@ public void ShouldBeAbleToStartMoreThanOneInstanceOfTheIEDriverSimultaneously()
secondDriver.Quit();
}

[Test]
//[Test]
public void ShouldPropagateSessionCookies()
{
driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIs("sessionCookie.html");
Expand All @@ -196,7 +196,7 @@ public void ShouldPropagateSessionCookies()
Assert.IsTrue(bodyStyle.Contains("BACKGROUND-COLOR: #80ffff") || bodyStyle.Contains("background-color: rgb(128, 255, 255)"));
}

[Test]
//[Test]
public void ShouldHandleShowModalDialogWindows()
{
driver.Url = alertsPage;
Expand Down Expand Up @@ -232,7 +232,7 @@ public void ShouldHandleShowModalDialogWindows()
driver.SwitchTo().Window(originalWindowHandle);
}

[Test]
//[Test]
public void ScrollTest()
{
driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIs("scroll.html");
Expand All @@ -242,7 +242,7 @@ public void ScrollTest()
Assert.AreEqual("line1", driver.FindElement(By.Id("clicked")).Text);
}

[Test]
//[Test]
public void ShouldNotScrollOverflowElementsWhichAreVisible()
{
driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIs("scroll2.html");
Expand All @@ -252,7 +252,7 @@ public void ShouldNotScrollOverflowElementsWhichAreVisible()
Assert.AreEqual(0, ((IJavaScriptExecutor)driver).ExecuteScript("return arguments[0].scrollTop;", list), "Should not have scrolled");
}

[Test]
//[Test]
public void ShouldNotScrollIfAlreadyScrolledAndElementIsInView()
{
driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIs("scroll3.html");
Expand All @@ -262,7 +262,7 @@ public void ShouldNotScrollIfAlreadyScrolledAndElementIsInView()
Assert.AreEqual(scrollTop, GetScrollTop());
}

[Test]
//[Test]
public void ShouldBeAbleToHandleCascadingModalDialogs()
{
driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIs("modal_dialogs/modalindex.html");
Expand Down Expand Up @@ -297,7 +297,7 @@ public void ShouldBeAbleToHandleCascadingModalDialogs()
driver.SwitchTo().Window(parentHandle);
}

[Test]
//[Test]
public void ShouldBeAbleToHandleCascadingModalDialogsLaunchedWithJavaScriptLinks()
{
driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIs("modal_dialogs/modalindex.html");
Expand Down Expand Up @@ -333,7 +333,7 @@ public void ShouldBeAbleToHandleCascadingModalDialogsLaunchedWithJavaScriptLinks
driver.SwitchTo().Window(parentHandle);
}

[Test]
//[Test]
public void TestInvisibleZOrder()
{
driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIs("elementObscuredByInvisibleElement.html");
Expand Down

0 comments on commit 1a0b1d0

Please sign in to comment.