Skip to content

Commit

Permalink
Unignoring .NET tests that now pass with new driver implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
jimevans committed Aug 8, 2019
1 parent 9535fdf commit 8f95c01
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 11 deletions.
3 changes: 0 additions & 3 deletions dotnet/test/common/ClickScrollingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,9 @@ public void ShouldBeAbleToClickOnAnElementHiddenByYOverflow()
}

[Test]
[IgnoreBrowser(Browser.IE, "Issue #716")]
[IgnoreBrowser(Browser.Firefox, "Issue #716")]
public void ShouldBeAbleToClickOnAnElementPartiallyHiddenByOverflow()
{
driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIs("scrolling_tests/page_with_partially_hidden_element.html");

driver.FindElement(By.Id("btn")).Click();
WaitFor(TitleToBe("Clicked Successfully!"), "Browser title was not 'Clicked Successfully'");
}
Expand Down
1 change: 0 additions & 1 deletion dotnet/test/common/ClickTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,6 @@ public void ClicksASurroundingStrongTag()
}

[Test]
[IgnoreBrowser(Browser.IE, "Map click fails")]
[IgnoreBrowser(Browser.Opera, "Map click fails")]
public void CanClickAnImageMapArea()
{
Expand Down
3 changes: 0 additions & 3 deletions dotnet/test/common/PageLoadingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ public void NoneStrategyShouldNotWaitForPageToRefresh()
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Chrome driver does not support eager page load strategy")]
[IgnoreBrowser(Browser.Edge, "Edge driver does not support eager page load strategy")]
public void EagerStrategyShouldNotWaitForResources()
{
Expand All @@ -86,7 +85,6 @@ public void EagerStrategyShouldNotWaitForResources()
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Chrome driver does not support eager page load strategy")]
[IgnoreBrowser(Browser.Edge, "Edge driver does not support eager page load strategy")]
public void EagerStrategyShouldNotWaitForResourcesOnRefresh()
{
Expand All @@ -113,7 +111,6 @@ public void EagerStrategyShouldNotWaitForResourcesOnRefresh()
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Chrome driver does not support eager page load strategy")]
[IgnoreBrowser(Browser.Edge, "Edge driver does not support eager page load strategy")]
public void EagerStrategyShouldWaitForDocumentToBeLoaded()
{
Expand Down
2 changes: 0 additions & 2 deletions dotnet/test/common/VisibilityTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ public void TooSmallAWindowWithOverflowHiddenIsNotAProblem()
}

[Test]
[IgnoreBrowser(Browser.IE, "IE does not support the hidden attribute")]
public void ShouldShowElementNotVisibleWithHiddenAttribute()
{
string url = EnvironmentManager.Instance.UrlBuilder.WhereIs("hidden.html");
Expand All @@ -234,7 +233,6 @@ public void ShouldShowElementNotVisibleWithHiddenAttribute()
}

[Test]
[IgnoreBrowser(Browser.IE, "IE does not support the hidden attribute")]
public void ShouldShowElementNotVisibleWhenParentElementHasHiddenAttribute()
{
string url = EnvironmentManager.Instance.UrlBuilder.WhereIs("hidden.html");
Expand Down
2 changes: 0 additions & 2 deletions dotnet/test/common/WindowSwitchingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,6 @@ public void CloseShouldCloseCurrentHandleOnly()
}

[Test]
[IgnoreBrowser(Browser.Chrome, "Driver does not yet support new window command")]
[IgnoreBrowser(Browser.Edge, "Driver does not yet support new window command")]
[IgnoreBrowser(Browser.EdgeLegacy, "Driver does not yet support new window command")]
public void ShouldBeAbleToCreateANewWindow()
{
Expand Down

0 comments on commit 8f95c01

Please sign in to comment.