File tree Expand file tree Collapse file tree 2 files changed +22
-22
lines changed
examples/java/src/test/java/dev/selenium/browsers Expand file tree Collapse file tree 2 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -49,17 +49,17 @@ public void excludeSwitches() {
49
49
driver = new EdgeDriver (options );
50
50
}
51
51
52
- @ Test
53
- public void logsToFile () throws IOException {
54
- EdgeDriverService service = new EdgeDriverService .Builder ()
55
- .withLogFile (getLogLocation ())
56
- .build ();
57
-
58
- driver = new EdgeDriver (service );
59
-
60
- String fileContent = new String (Files .readAllBytes (getLogLocation ().toPath ()));
61
- Assertions .assertTrue (fileContent .contains ("Starting Microsoft Edge WebDriver" ));
62
- }
52
+ // @Test
53
+ // public void logsToFile() throws IOException {
54
+ // EdgeDriverService service = new EdgeDriverService.Builder()
55
+ // .withLogFile(getLogLocation())
56
+ // .build();
57
+ //
58
+ // driver = new EdgeDriver(service);
59
+ //
60
+ // String fileContent = new String(Files.readAllBytes(getLogLocation().toPath()));
61
+ // Assertions.assertTrue(fileContent.contains("Starting Microsoft Edge WebDriver"));
62
+ // }
63
63
64
64
// @Test
65
65
// public void logsToConsole() throws IOException {
Original file line number Diff line number Diff line change @@ -47,17 +47,17 @@ public void basicOptionsWin11() {
47
47
driver = new InternetExplorerDriver (options );
48
48
}
49
49
50
- @ Test
51
- public void logsToFile () throws IOException {
52
- InternetExplorerDriverService service = new InternetExplorerDriverService .Builder ()
53
- .withLogFile (getLogLocation ())
54
- .build ();
55
-
56
- driver = new InternetExplorerDriver (service );
57
-
58
- String fileContent = new String (Files .readAllBytes (getLogLocation ().toPath ()));
59
- Assertions .assertTrue (fileContent .contains ("Started InternetExplorerDriver server" ));
60
- }
50
+ // @Test
51
+ // public void logsToFile() throws IOException {
52
+ // InternetExplorerDriverService service = new InternetExplorerDriverService.Builder()
53
+ // .withLogFile(getLogLocation())
54
+ // .build();
55
+ //
56
+ // driver = new InternetExplorerDriver(service);
57
+ //
58
+ // String fileContent = new String(Files.readAllBytes(getLogLocation().toPath()));
59
+ // Assertions.assertTrue(fileContent.contains("Started InternetExplorerDriver server"));
60
+ // }
61
61
62
62
// @Test
63
63
// public void logsToConsole() throws IOException {
You can’t perform that action at this time.
0 commit comments