From ab2b3e95ea9169722a4ad887202b8b4e005baf1d Mon Sep 17 00:00:00 2001 From: Clay Martin Date: Fri, 10 Aug 2018 15:35:42 -0700 Subject: [PATCH] Disabling insercure cert cookie tests Signed-off-by: Jim Evans --- dotnet/test/common/CookieImplementationTest.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotnet/test/common/CookieImplementationTest.cs b/dotnet/test/common/CookieImplementationTest.cs index 867777e26afb6..7c0bb7e5f580b 100644 --- a/dotnet/test/common/CookieImplementationTest.cs +++ b/dotnet/test/common/CookieImplementationTest.cs @@ -468,6 +468,7 @@ public void ShouldRetainCookieExpiry() [Test] [IgnoreBrowser(Browser.IE, "Browser does not handle untrusted SSL certificates.")] + [IgnoreBrowser(Browser.Edge, "Browser does not handle untrusted SSL certificates.")] public void CanHandleSecureCookie() { driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIsSecure("animals"); @@ -483,6 +484,7 @@ public void CanHandleSecureCookie() [Test] [IgnoreBrowser(Browser.IE, "Browser does not handle untrusted SSL certificates.")] + [IgnoreBrowser(Browser.Edge, "Browser does not handle untrusted SSL certificates.")] public void ShouldRetainCookieSecure() { driver.Url = EnvironmentManager.Instance.UrlBuilder.WhereIsSecure("animals");