File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
java/src/test/java/dev/selenium/interactions
kotlin/src/test/kotlin/dev/selenium/virtualauthenticator Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 55import java .util .Base64 ;
66import java .util .List ;
77import org .junit .jupiter .api .Assertions ;
8+ import org .junit .jupiter .api .Disabled ;
89import org .junit .jupiter .api .Test ;
910import org .openqa .selenium .InvalidArgumentException ;
1011import org .openqa .selenium .virtualauthenticator .Credential ;
@@ -133,6 +134,7 @@ public void testAddResidentCredentialNotSupportedWhenAuthenticatorUsesU2FProtoco
133134
134135
135136 @ Test
137+ @ Disabled ("A fix was implemented and will be available in Selenium 4.34." )
136138 public void testCreateAndAddNonResidentialKey () {
137139 VirtualAuthenticatorOptions options = new VirtualAuthenticatorOptions ()
138140 .setProtocol (VirtualAuthenticatorOptions .Protocol .U2F )
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import org.junit.jupiter.api.AfterEach
44import org.junit.jupiter.api.Assertions
55import org.junit.jupiter.api.BeforeEach
66import org.junit.jupiter.api.Test
7+ import org.junit.jupiter.api.Disabled
78import org.openqa.selenium.InvalidArgumentException
89import org.openqa.selenium.WebDriver
910import org.openqa.selenium.chrome.ChromeDriver
@@ -107,6 +108,7 @@ class VirtualAuthenticatorTest {
107108 }
108109
109110 @Test
111+ @Disabled(" A fix was implemented and will be available in Selenium 4.34." )
110112 fun testCreateAndAddNonResidentialKey () {
111113 val options = VirtualAuthenticatorOptions ()
112114 .setProtocol(VirtualAuthenticatorOptions .Protocol .U2F )
@@ -208,4 +210,4 @@ class VirtualAuthenticatorTest {
208210 )
209211 )
210212 }
211- }
213+ }
You can’t perform that action at this time.
0 commit comments