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 5
5
import java .util .Base64 ;
6
6
import java .util .List ;
7
7
import org .junit .jupiter .api .Assertions ;
8
+ import org .junit .jupiter .api .Disabled ;
8
9
import org .junit .jupiter .api .Test ;
9
10
import org .openqa .selenium .InvalidArgumentException ;
10
11
import org .openqa .selenium .virtualauthenticator .Credential ;
@@ -133,6 +134,7 @@ public void testAddResidentCredentialNotSupportedWhenAuthenticatorUsesU2FProtoco
133
134
134
135
135
136
@ Test
137
+ @ Disabled ("A fix was implemented and will be available in Selenium 4.34." )
136
138
public void testCreateAndAddNonResidentialKey () {
137
139
VirtualAuthenticatorOptions options = new VirtualAuthenticatorOptions ()
138
140
.setProtocol (VirtualAuthenticatorOptions .Protocol .U2F )
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import org.junit.jupiter.api.AfterEach
4
4
import org.junit.jupiter.api.Assertions
5
5
import org.junit.jupiter.api.BeforeEach
6
6
import org.junit.jupiter.api.Test
7
+ import org.junit.jupiter.api.Disabled
7
8
import org.openqa.selenium.InvalidArgumentException
8
9
import org.openqa.selenium.WebDriver
9
10
import org.openqa.selenium.chrome.ChromeDriver
@@ -107,6 +108,7 @@ class VirtualAuthenticatorTest {
107
108
}
108
109
109
110
@Test
111
+ @Disabled(" A fix was implemented and will be available in Selenium 4.34." )
110
112
fun testCreateAndAddNonResidentialKey () {
111
113
val options = VirtualAuthenticatorOptions ()
112
114
.setProtocol(VirtualAuthenticatorOptions .Protocol .U2F )
@@ -208,4 +210,4 @@ class VirtualAuthenticatorTest {
208
210
)
209
211
)
210
212
}
211
- }
213
+ }
You can’t perform that action at this time.
0 commit comments