23
23
import static org .junit .jupiter .api .Assertions .assertEquals ;
24
24
import static org .junit .jupiter .api .Assertions .assertNull ;
25
25
import static org .junit .jupiter .api .Assertions .assertThrows ;
26
+ import static org .openqa .selenium .testing .drivers .Browser .CHROME ;
26
27
27
28
import java .net .MalformedURLException ;
28
29
import java .net .URL ;
35
36
import org .openqa .selenium .chrome .ChromeOptions ;
36
37
import org .openqa .selenium .support .ui .WebDriverWait ;
37
38
import org .openqa .selenium .testing .JupiterTestBase ;
38
- import org .openqa .selenium .testing .drivers . Browser ;
39
+ import org .openqa .selenium .testing .NotYetImplemented ;
39
40
40
41
class FederatedCredentialManagementTest extends JupiterTestBase {
41
42
@@ -44,7 +45,7 @@ class FederatedCredentialManagementTest extends JupiterTestBase {
44
45
45
46
@ BeforeEach
46
47
public void setup () {
47
- ChromeOptions options = (ChromeOptions ) Browser . CHROME .getCapabilities ();
48
+ ChromeOptions options = (ChromeOptions ) CHROME .getCapabilities ();
48
49
// options.setAcceptInsecureCerts(true);
49
50
options .addArguments (
50
51
String .format ("host-resolver-rules=MAP localhost:443 localhost:%d" , getSecurePort ()));
@@ -80,6 +81,9 @@ private int getSecurePort() {
80
81
}
81
82
82
83
@ Test
84
+ @ NotYetImplemented (
85
+ value = CHROME ,
86
+ reason = "https://github.com/SeleniumHQ/selenium/pull/12096#issuecomment-2017760822" )
83
87
void testDismissDialog () {
84
88
fedcmDriver .setDelayEnabled (false );
85
89
assertNull (fedcmDriver .getFederatedCredentialManagementDialog ());
@@ -112,6 +116,9 @@ void testDismissDialog() {
112
116
}
113
117
114
118
@ Test
119
+ @ NotYetImplemented (
120
+ value = CHROME ,
121
+ reason = "https://github.com/SeleniumHQ/selenium/pull/12096#issuecomment-2017760822" )
115
122
void testSelectAccount () {
116
123
fedcmDriver .setDelayEnabled (false );
117
124
assertNull (fedcmDriver .getFederatedCredentialManagementDialog ());
0 commit comments