File tree Expand file tree Collapse file tree 1 file changed +0
-16
lines changed
examples/java/src/test/java/dev/selenium/bidirectional/webdriver_bidi Expand file tree Collapse file tree 1 file changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -46,28 +46,12 @@ void testCreateAWindow() {
46
46
Assertions .assertNotNull (browsingContext .getId ());
47
47
}
48
48
49
- @ Test
50
- void testCreateAWindowWithAReferenceContext () {
51
- BrowsingContext
52
- browsingContext =
53
- new BrowsingContext (driver , WindowType .WINDOW , driver .getWindowHandle ());
54
- Assertions .assertNotNull (browsingContext .getId ());
55
- }
56
-
57
49
@ Test
58
50
void testCreateATab () {
59
51
BrowsingContext browsingContext = new BrowsingContext (driver , WindowType .TAB );
60
52
Assertions .assertNotNull (browsingContext .getId ());
61
53
}
62
54
63
- @ Test
64
- void testCreateATabWithAReferenceContext () {
65
- BrowsingContext
66
- browsingContext =
67
- new BrowsingContext (driver , WindowType .TAB , driver .getWindowHandle ());
68
- Assertions .assertNotNull (browsingContext .getId ());
69
- }
70
-
71
55
@ Test
72
56
void testNavigateToAUrl () {
73
57
BrowsingContext browsingContext = new BrowsingContext (driver , WindowType .TAB );
You can’t perform that action at this time.
0 commit comments