File tree Expand file tree Collapse file tree 5 files changed +16
-21
lines changed
java/src/org/openqa/selenium/devtools/v116 Expand file tree Collapse file tree 5 files changed +16
-21
lines changed Original file line number Diff line number Diff line change 18
18
package org .openqa .selenium .devtools .v116 ;
19
19
20
20
import com .google .common .collect .ImmutableList ;
21
+ import java .time .Instant ;
22
+ import java .util .List ;
23
+ import java .util .Optional ;
21
24
import org .openqa .selenium .JavascriptException ;
22
25
import org .openqa .selenium .devtools .Command ;
23
26
import org .openqa .selenium .devtools .DevTools ;
31
34
import org .openqa .selenium .devtools .v116 .runtime .model .ExceptionThrown ;
32
35
import org .openqa .selenium .devtools .v116 .runtime .model .StackTrace ;
33
36
34
- import java .time .Instant ;
35
- import java .util .List ;
36
- import java .util .Optional ;
37
-
38
37
public class v116Events extends Events <ConsoleAPICalled , ExceptionThrown > {
39
38
40
39
public v116Events (DevTools devtools ) {
Original file line number Diff line number Diff line change 17
17
18
18
package org .openqa .selenium .devtools .v116 ;
19
19
20
+ import java .util .Optional ;
20
21
import org .openqa .selenium .devtools .Command ;
21
22
import org .openqa .selenium .devtools .DevTools ;
22
23
import org .openqa .selenium .devtools .Event ;
26
27
import org .openqa .selenium .devtools .v116 .runtime .Runtime ;
27
28
import org .openqa .selenium .devtools .v116 .runtime .model .BindingCalled ;
28
29
29
- import java .util .Optional ;
30
-
31
30
public class v116Javascript extends Javascript <ScriptIdentifier , BindingCalled > {
32
31
33
32
public v116Javascript (DevTools devtools ) {
Original file line number Diff line number Diff line change 17
17
18
18
package org .openqa .selenium .devtools .v116 ;
19
19
20
+ import java .util .function .Function ;
21
+ import java .util .logging .Level ;
20
22
import org .openqa .selenium .devtools .Command ;
21
23
import org .openqa .selenium .devtools .ConverterFunctions ;
22
24
import org .openqa .selenium .devtools .Event ;
25
27
import org .openqa .selenium .devtools .v116 .runtime .model .Timestamp ;
26
28
import org .openqa .selenium .json .JsonInput ;
27
29
28
- import java .util .function .Function ;
29
- import java .util .logging .Level ;
30
-
31
30
public class v116Log implements org .openqa .selenium .devtools .idealized .log .Log {
32
31
33
32
@ Override
Original file line number Diff line number Diff line change 17
17
18
18
package org .openqa .selenium .devtools .v116 ;
19
19
20
+ import static java .net .HttpURLConnection .HTTP_OK ;
21
+
20
22
import com .google .common .collect .ImmutableList ;
21
23
import com .google .common .io .ByteStreams ;
24
+ import java .io .ByteArrayOutputStream ;
25
+ import java .io .IOException ;
26
+ import java .io .InputStream ;
27
+ import java .util .*;
28
+ import java .util .logging .Logger ;
22
29
import org .openqa .selenium .UsernameAndPassword ;
23
30
import org .openqa .selenium .devtools .Command ;
24
31
import org .openqa .selenium .devtools .DevTools ;
32
39
import org .openqa .selenium .remote .http .HttpRequest ;
33
40
import org .openqa .selenium .remote .http .HttpResponse ;
34
41
35
- import java .io .ByteArrayOutputStream ;
36
- import java .io .IOException ;
37
- import java .io .InputStream ;
38
- import java .util .*;
39
- import java .util .logging .Logger ;
40
-
41
- import static java .net .HttpURLConnection .HTTP_OK ;
42
-
43
42
public class v116Network extends Network <AuthRequired , RequestPaused > {
44
43
45
44
private static final Logger LOG = Logger .getLogger (v116Network .class .getName ());
Original file line number Diff line number Diff line change 19
19
20
20
import com .google .common .collect .ImmutableList ;
21
21
import com .google .common .collect .ImmutableMap ;
22
+ import java .util .List ;
23
+ import java .util .Optional ;
24
+ import java .util .function .Function ;
22
25
import org .openqa .selenium .devtools .Command ;
23
26
import org .openqa .selenium .devtools .ConverterFunctions ;
24
27
import org .openqa .selenium .devtools .Event ;
30
33
import org .openqa .selenium .json .JsonInput ;
31
34
import org .openqa .selenium .json .TypeToken ;
32
35
33
- import java .util .List ;
34
- import java .util .Optional ;
35
- import java .util .function .Function ;
36
-
37
36
public class v116Target implements org .openqa .selenium .devtools .idealized .target .Target {
38
37
39
38
@ Override
You can’t perform that action at this time.
0 commit comments