|
17 | 17 |
|
18 | 18 | package org.openqa.selenium.devtools.v114; |
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; |
22 | | - |
| 24 | +import java.io.ByteArrayOutputStream; |
| 25 | +import java.io.IOException; |
| 26 | +import java.io.InputStream; |
| 27 | +import java.util.AbstractMap; |
| 28 | +import java.util.Base64; |
| 29 | +import java.util.LinkedList; |
| 30 | +import java.util.List; |
| 31 | +import java.util.Map; |
| 32 | +import java.util.Optional; |
| 33 | +import java.util.logging.Logger; |
23 | 34 | import org.openqa.selenium.UsernameAndPassword; |
24 | 35 | import org.openqa.selenium.devtools.Command; |
25 | 36 | import org.openqa.selenium.devtools.DevTools; |
|
38 | 49 | import org.openqa.selenium.remote.http.HttpRequest; |
39 | 50 | import org.openqa.selenium.remote.http.HttpResponse; |
40 | 51 |
|
41 | | -import java.io.ByteArrayOutputStream; |
42 | | -import java.io.IOException; |
43 | | -import java.io.InputStream; |
44 | | -import java.util.AbstractMap; |
45 | | -import java.util.Base64; |
46 | | -import java.util.LinkedList; |
47 | | -import java.util.List; |
48 | | -import java.util.Map; |
49 | | -import java.util.Optional; |
50 | | -import java.util.logging.Logger; |
51 | | - |
52 | | -import static java.net.HttpURLConnection.HTTP_OK; |
53 | | - |
54 | 52 | public class v114Network extends Network<AuthRequired, RequestPaused> { |
55 | 53 |
|
56 | 54 | private static final Logger LOG = Logger.getLogger(v114Network.class.getName()); |
|
0 commit comments