@@ -20,7 +20,7 @@ Starting an Edge session with basic defined options looks like this:
2020
2121{{< tabpane text=true >}}
2222{{< tab header="Java" >}}
23- {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L37- L38" >}}
23+ {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L38-L39 " >}}
2424{{< /tab >}}
2525{{% tab header="Python" %}}
2626{{< gh-codeblock path="/examples/python/tests/browsers/test_edge.py#L9-L10" >}}
@@ -52,7 +52,7 @@ Add an argument to options:
5252
5353{{< tabpane text=true >}}
5454{{< tab header="Java" >}}
55- {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L45 " >}}
55+ {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L46 " >}}
5656{{< /tab >}}
5757{{% tab header="Python" %}}
5858{{< gh-codeblock path="/examples/python/tests/browsers/test_edge.py#L18" >}}
@@ -80,7 +80,7 @@ Add a browser location to options:
8080
8181{{< tabpane text=true >}}
8282{{< tab header="Java" >}}
83- {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L54 " >}}
83+ {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L55 " >}}
8484{{< /tab >}}
8585{{% tab header="Python" %}}
8686{{< gh-codeblock path="/examples/python/tests/browsers/test_edge.py#L29">}}
@@ -109,7 +109,7 @@ Add an extension to options:
109109
110110{{< tabpane text=true >}}
111111{{< tab header="Java" >}}
112- {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L65 " >}}
112+ {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L66 " >}}
113113{{< /tab >}}
114114{{% tab header="Python" %}}
115115{{< gh-codeblock path="/examples/python/tests/browsers/test_edge.py#L40" >}}
@@ -166,7 +166,7 @@ Set excluded arguments on options:
166166
167167{{< tabpane text=true >}}
168168{{< tab header="Java" >}}
169- {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L78 " >}}
169+ {{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L79 " >}}
170170{{< /tab >}}
171171{{% tab header="Python" %}}
172172{{< gh-codeblock path="/examples/python/tests/browsers/test_edge.py#L62" >}}
@@ -203,7 +203,7 @@ To change the logging output to save to a specific file:
203203{{< tabpane text=true >}}
204204{{% tab header="Java" %}}
205205{{< badge-version version="4.10" >}}
206- {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L100 " >}}
206+ {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L101 " >}}
207207** Note** : Java also allows setting file output by System Property:\ 
208208Property key: ` EdgeDriverService.EDGE_DRIVER_LOG_PROPERTY ` \ 
209209Property value: String representing path to log file
@@ -233,7 +233,7 @@ To change the logging output to display in the console as STDOUT:
233233{{< tabpane text=true >}}
234234{{% tab header="Java" %}}
235235{{< badge-version version="4.10" >}}
236- {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L113 " >}}
236+ {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L114 " >}}
237237** Note** : Java also allows setting console output by System Property;\ 
238238Property key: ` EdgeDriverService.EDGE_DRIVER_LOG_PROPERTY ` \ 
239239Property value: ` DriverService.LOG_STDOUT `  or ` DriverService.LOG_STDERR ` 
@@ -266,7 +266,7 @@ so this example is just setting the log level generically:
266266{{< tabpane text=true >}}
267267{{% tab header="Java" %}}
268268{{< badge-version version="4.8" >}}
269- {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L126- L127" >}}
269+ {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L127-L128 " >}}
270270** Note** : Java also allows setting log level by System Property:\ 
271271Property key: ` EdgeDriverService.EDGE_DRIVER_LOG_LEVEL_PROPERTY ` \ 
272272Property value: String representation of ` ChromiumDriverLogLevel `  enum
@@ -300,7 +300,7 @@ The log output will be managed by the driver, not the process, so minor differen
300300{{< tabpane text=true >}}
301301{{% tab header="Java" %}}
302302{{< badge-version version="4.8" >}}
303- {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L142- L143" >}}
303+ {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L143-L144 " >}}
304304** Note** : Java also allows toggling these features by System Property:\ 
305305Property keys: ` EdgeDriverService.EDGE_DRIVER_APPEND_LOG_PROPERTY `  and ` EdgeDriverService.EDGE_DRIVER_READABLE_TIMESTAMP ` \ 
306306Property value: ` "true" `  or ` "false" ` 
@@ -332,7 +332,7 @@ Note that this is an unsupported feature, and bugs will not be investigated.
332332{{< tabpane text=true >}}
333333{{% tab header="Java" %}}
334334{{< badge-version version="4.8" >}}
335- {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L160- L161" >}}
335+ {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L161-L162 " >}}
336336** Note** : Java also allows disabling build checks by System Property:\ 
337337Property key: ` EdgeDriverService.EDGE_DRIVER_DISABLE_BUILD_CHECK ` \ 
338338Property value: ` "true" `  or ` "false" ` 
@@ -443,7 +443,7 @@ You can simulate various network conditions.
443443
444444{{< tabpane text=true >}}
445445{{< tab header="Java" >}}
446- {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L183 " >}}
446+ {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/EdgeTest.java#L184 " >}}
447447{{< /tab >}}
448448{{< tab header="Python" >}}
449449{{< gh-codeblock path="/examples/python/tests/browsers/test_edge.py#L149" >}}
0 commit comments