Skip to content

Commit 79bd106

Browse files
committed
fix bad merge with SeleniumHQ#1411
[deploy site]
1 parent bfc30f2 commit 79bd106

File tree

6 files changed

+47
-50
lines changed

6 files changed

+47
-50
lines changed

examples/python/tests/browsers/test_chrome.py

-2
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,6 @@ def test_build_checks(log_path):
9999

100100
driver.quit()
101101

102-
driver.quit()
103-
104102
def test_add_extension():
105103
chrome_options = webdriver.ChromeOptions()
106104
path = os.path.abspath("tests/extensions/webextensions-selenium-example.crx")

examples/ruby/spec/browsers/chrome_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,5 @@
100100
injected = @driver.find_element(:id, 'webextensions-selenium-example')
101101
expect(injected.text).to eq 'Content injected by webextensions-selenium-example'
102102
end
103-
104103
end
105104
end

website_and_docs/content/documentation/webdriver/browsers/chrome.en.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -112,16 +112,16 @@ Add an extension to options:
112112

113113
{{< tabpane text=true langEqualsHeader=true >}}
114114
{{< tab header="Java" >}}
115-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L137-L139" >}}
115+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L139" >}}
116116
{{< /tab >}}
117117
{{% tab header="Python" %}}
118-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L105-L107">}}
118+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L105">}}
119119
{{% /tab %}}
120120
{{< tab header="CSharp" >}}
121121
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L50" >}}
122122
{{< /tab >}}
123123
{{< tab header="Ruby" >}}
124-
{{< gh-codeblock path="/examples/ruby/spec/browsers/chrome_spec.rb#L94-L96" >}}
124+
{{< gh-codeblock path="/examples/ruby/spec/browsers/chrome_spec.rb#L96" >}}
125125
{{< /tab >}}
126126
{{< tab header="JavaScript" >}}
127127
{{< gh-codeblock path="/examples/javascript/test/browser/chromeSpecificCaps.spec.js#L62-L66">}}
@@ -213,7 +213,7 @@ Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
213213
Property value: String representing path to log file
214214
{{% /tab %}}
215215
{{< tab header="Python" >}}
216-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L46" >}}
216+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L47" >}}
217217
{{< /tab >}}
218218
{{< tab header="CSharp" >}}
219219
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L74" >}}
@@ -235,7 +235,7 @@ To change the logging output to display in the console as STDOUT:
235235

236236
{{< tabpane text=true langEqualsHeader=true >}}
237237
{{% tab header="Java" %}}
238-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L69" >}}
238+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L74" >}}
239239
**Note**: Java also allows setting console output by System Property;\
240240
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
241241
Property value: `DriverService.LOG_STDOUT` or `DriverService.LOG_STDERR`
@@ -265,13 +265,13 @@ so this example is just setting the log level generically:
265265

266266
{{< tabpane text=true langEqualsHeader=true >}}
267267
{{% tab header="Java" %}}
268-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L84" >}}
268+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L89" >}}
269269
**Note**: Java also allows setting log level by System Property:\
270270
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_LEVEL_PROPERTY`\
271271
Property value: String representation of `ChromiumDriverLogLevel` enum
272272
{{% /tab %}}
273273
{{< tab header="Python" >}}
274-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L69" >}}
274+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L70" >}}
275275
{{< /tab >}}
276276
{{< tab header="CSharp" >}}
277277
{{< badge-implementation >}}
@@ -297,13 +297,13 @@ The log output will be managed by the driver, not the process, so minor differen
297297

298298
{{< tabpane text=true langEqualsHeader=true >}}
299299
{{% tab header="Java" %}}
300-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L101-L102" >}}
300+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L106-L107" >}}
301301
**Note**: Java also allows toggling these features by System Property:\
302302
Property keys: `ChromeDriverService.CHROME_DRIVER_APPEND_LOG_PROPERTY` and `ChromeDriverService.CHROME_DRIVER_READABLE_TIMESTAMP`\
303303
Property value: `"true"` or `"false"`
304304
{{% /tab %}}
305305
{{< tab header="Python" >}}
306-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L80" >}}
306+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L81" >}}
307307
{{< /tab >}}
308308
{{< tab header="CSharp" >}}
309309
{{< badge-implementation >}}
@@ -327,13 +327,13 @@ Note that this is an unsupported feature, and bugs will not be investigated.
327327

328328
{{< tabpane text=true langEqualsHeader=true >}}
329329
{{% tab header="Java" %}}
330-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L120" >}}
330+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L125" >}}
331331
**Note**: Java also allows disabling build checks by System Property:\
332332
Property key: `ChromeDriverService.CHROME_DRIVER_DISABLE_BUILD_CHECK`\
333333
Property value: `"true"` or `"false"`
334334
{{% /tab %}}
335335
{{< tab header="Python" >}}
336-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L91" >}}
336+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L92" >}}
337337
{{< /tab >}}
338338
{{< tab header="CSharp" >}}
339339
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L144" >}}

website_and_docs/content/documentation/webdriver/browsers/chrome.ja.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -115,19 +115,19 @@ please use the `load-extension` argument instead, as mentioned in
115115

116116
{{< tabpane text=true langEqualsHeader=true >}}
117117
{{< tab header="Java" >}}
118-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L44-L47" >}}
118+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L139" >}}
119119
{{< /tab >}}
120120
{{% tab header="Python" %}}
121-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L41-L43">}}
121+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L105">}}
122122
{{% /tab %}}
123123
{{< tab header="CSharp" >}}
124124
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L50" >}}
125125
{{< /tab >}}
126126
{{< tab header="Ruby" >}}
127-
{{< gh-codeblock path="/examples/ruby/spec/browsers/chrome_spec.rb#L35-L37" >}}
127+
{{< gh-codeblock path="/examples/ruby/spec/browsers/chrome_spec.rb#L96" >}}
128128
{{< /tab >}}
129129
{{< tab header="JavaScript" >}}
130-
{{< gh-codeblock path="/examples/javascript/test/browser/chromeSpecificCaps.spec.js#L51-L55">}}
130+
{{< gh-codeblock path="/examples/javascript/test/browser/chromeSpecificCaps.spec.js#L62-L66">}}
131131
{{< /tab >}}
132132
{{< tab header="Kotlin" >}}
133133
{{< badge-code >}}
@@ -217,7 +217,7 @@ Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
217217
Property value: String representing path to log file
218218
{{% /tab %}}
219219
{{< tab header="Python" >}}
220-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L46" >}}
220+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L47" >}}
221221
{{< /tab >}}
222222
{{< tab header="CSharp" >}}
223223
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L74" >}}
@@ -239,7 +239,7 @@ To change the logging output to display in the console as STDOUT:
239239

240240
{{< tabpane text=true langEqualsHeader=true >}}
241241
{{% tab header="Java" %}}
242-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L69" >}}
242+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L74" >}}
243243
**Note**: Java also allows setting console output by System Property;\
244244
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
245245
Property value: `DriverService.LOG_STDOUT` or `DriverService.LOG_STDERR`
@@ -269,13 +269,13 @@ so this example is just setting the log level generically:
269269

270270
{{< tabpane text=true langEqualsHeader=true >}}
271271
{{% tab header="Java" %}}
272-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L84" >}}
272+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L89" >}}
273273
**Note**: Java also allows setting log level by System Property:\
274274
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_LEVEL_PROPERTY`\
275275
Property value: String representation of `ChromiumDriverLogLevel` enum
276276
{{% /tab %}}
277277
{{< tab header="Python" >}}
278-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L69" >}}
278+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L70" >}}
279279
{{< /tab >}}
280280
{{< tab header="CSharp" >}}
281281
{{< badge-implementation >}}
@@ -301,13 +301,13 @@ The log output will be managed by the driver, not the process, so minor differen
301301

302302
{{< tabpane text=true langEqualsHeader=true >}}
303303
{{% tab header="Java" %}}
304-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L101-L102" >}}
304+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L106-L107" >}}
305305
**Note**: Java also allows toggling these features by System Property:\
306306
Property keys: `ChromeDriverService.CHROME_DRIVER_APPEND_LOG_PROPERTY` and `ChromeDriverService.CHROME_DRIVER_READABLE_TIMESTAMP`\
307307
Property value: `"true"` or `"false"`
308308
{{% /tab %}}
309309
{{< tab header="Python" >}}
310-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L80" >}}
310+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L81" >}}
311311
{{< /tab >}}
312312
{{< tab header="CSharp" >}}
313313
{{< badge-implementation >}}
@@ -331,13 +331,13 @@ Note that this is an unsupported feature, and bugs will not be investigated.
331331

332332
{{< tabpane text=true langEqualsHeader=true >}}
333333
{{% tab header="Java" %}}
334-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L120" >}}
334+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L125" >}}
335335
**Note**: Java also allows disabling build checks by System Property:\
336336
Property key: `ChromeDriverService.CHROME_DRIVER_DISABLE_BUILD_CHECK`\
337337
Property value: `"true"` or `"false"`
338338
{{% /tab %}}
339339
{{< tab header="Python" >}}
340-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L91" >}}
340+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L92" >}}
341341
{{< /tab >}}
342342
{{< tab header="CSharp" >}}
343343
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L144" >}}

website_and_docs/content/documentation/webdriver/browsers/chrome.pt-br.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,19 @@ Adicionar uma extensão:
111111

112112
{{< tabpane text=true langEqualsHeader=true >}}
113113
{{< tab header="Java" >}}
114-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L44-L47" >}}
114+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L139" >}}
115115
{{< /tab >}}
116116
{{% tab header="Python" %}}
117-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L41-L43">}}
117+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L105">}}
118118
{{% /tab %}}
119119
{{< tab header="CSharp" >}}
120120
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L50" >}}
121121
{{< /tab >}}
122122
{{< tab header="Ruby" >}}
123-
{{< gh-codeblock path="/examples/ruby/spec/browsers/chrome_spec.rb#L35-L37" >}}
123+
{{< gh-codeblock path="/examples/ruby/spec/browsers/chrome_spec.rb#L96" >}}
124124
{{< /tab >}}
125125
{{< tab header="JavaScript" >}}
126-
{{< gh-codeblock path="/examples/javascript/test/browser/chromeSpecificCaps.spec.js#L51-L55">}}
126+
{{< gh-codeblock path="/examples/javascript/test/browser/chromeSpecificCaps.spec.js#L62-L66">}}
127127
{{< /tab >}}
128128
{{< tab header="Kotlin" >}}
129129
{{< badge-code >}}
@@ -212,7 +212,7 @@ Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
212212
Property value: String representing path to log file
213213
{{% /tab %}}
214214
{{< tab header="Python" >}}
215-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L46" >}}
215+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L47" >}}
216216
{{< /tab >}}
217217
{{< tab header="CSharp" >}}
218218
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L74" >}}
@@ -234,7 +234,7 @@ To change the logging output to display in the console as STDOUT:
234234

235235
{{< tabpane text=true langEqualsHeader=true >}}
236236
{{% tab header="Java" %}}
237-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L69" >}}
237+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L74" >}}
238238
**Note**: Java also allows setting console output by System Property;\
239239
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
240240
Property value: `DriverService.LOG_STDOUT` or `DriverService.LOG_STDERR`
@@ -264,13 +264,13 @@ so this example is just setting the log level generically:
264264

265265
{{< tabpane text=true langEqualsHeader=true >}}
266266
{{% tab header="Java" %}}
267-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L84" >}}
267+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L89" >}}
268268
**Note**: Java also allows setting log level by System Property:\
269269
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_LEVEL_PROPERTY`\
270270
Property value: String representation of `ChromiumDriverLogLevel` enum
271271
{{% /tab %}}
272272
{{< tab header="Python" >}}
273-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L69" >}}
273+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L70" >}}
274274
{{< /tab >}}
275275
{{< tab header="CSharp" >}}
276276
{{< badge-implementation >}}
@@ -296,13 +296,13 @@ The log output will be managed by the driver, not the process, so minor differen
296296

297297
{{< tabpane text=true langEqualsHeader=true >}}
298298
{{% tab header="Java" %}}
299-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L101-L102" >}}
299+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L106-L107" >}}
300300
**Note**: Java also allows toggling these features by System Property:\
301301
Property keys: `ChromeDriverService.CHROME_DRIVER_APPEND_LOG_PROPERTY` and `ChromeDriverService.CHROME_DRIVER_READABLE_TIMESTAMP`\
302302
Property value: `"true"` or `"false"`
303303
{{% /tab %}}
304304
{{< tab header="Python" >}}
305-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L80" >}}
305+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L81" >}}
306306
{{< /tab >}}
307307
{{< tab header="CSharp" >}}
308308
{{< badge-implementation >}}
@@ -326,13 +326,13 @@ Note that this is an unsupported feature, and bugs will not be investigated.
326326

327327
{{< tabpane text=true langEqualsHeader=true >}}
328328
{{% tab header="Java" %}}
329-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L120" >}}
329+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L125" >}}
330330
**Note**: Java also allows disabling build checks by System Property:\
331331
Property key: `ChromeDriverService.CHROME_DRIVER_DISABLE_BUILD_CHECK`\
332332
Property value: `"true"` or `"false"`
333333
{{% /tab %}}
334334
{{< tab header="Python" >}}
335-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L91" >}}
335+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L92" >}}
336336
{{< /tab >}}
337337
{{< tab header="CSharp" >}}
338338
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L144" >}}

website_and_docs/content/documentation/webdriver/browsers/chrome.zh-cn.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -111,19 +111,19 @@ please use the `load-extension` argument instead, as mentioned in
111111

112112
{{< tabpane text=true langEqualsHeader=true >}}
113113
{{< tab header="Java" >}}
114-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L44-L47" >}}
114+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L139" >}}
115115
{{< /tab >}}
116116
{{% tab header="Python" %}}
117-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L41-L43">}}
117+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L105">}}
118118
{{% /tab %}}
119119
{{< tab header="CSharp" >}}
120120
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L50" >}}
121121
{{< /tab >}}
122122
{{< tab header="Ruby" >}}
123-
{{< gh-codeblock path="/examples/ruby/spec/browsers/chrome_spec.rb#L35-L37" >}}
123+
{{< gh-codeblock path="/examples/ruby/spec/browsers/chrome_spec.rb#L96" >}}
124124
{{< /tab >}}
125125
{{< tab header="JavaScript" >}}
126-
{{< gh-codeblock path="/examples/javascript/test/browser/chromeSpecificCaps.spec.js#L51-L55">}}
126+
{{< gh-codeblock path="/examples/javascript/test/browser/chromeSpecificCaps.spec.js#L62-L66">}}
127127
{{< /tab >}}
128128
{{< tab header="Kotlin" >}}
129129
{{< badge-code >}}
@@ -211,7 +211,7 @@ Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
211211
Property value: String representing path to log file
212212
{{% /tab %}}
213213
{{< tab header="Python" >}}
214-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L46" >}}
214+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L47" >}}
215215
{{< /tab >}}
216216
{{< tab header="CSharp" >}}
217217
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L74" >}}
@@ -233,7 +233,7 @@ To change the logging output to display in the console as STDOUT:
233233

234234
{{< tabpane text=true langEqualsHeader=true >}}
235235
{{% tab header="Java" %}}
236-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L69" >}}
236+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L74" >}}
237237
**Note**: Java also allows setting console output by System Property;\
238238
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
239239
Property value: `DriverService.LOG_STDOUT` or `DriverService.LOG_STDERR`
@@ -263,13 +263,13 @@ so this example is just setting the log level generically:
263263

264264
{{< tabpane text=true langEqualsHeader=true >}}
265265
{{% tab header="Java" %}}
266-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L84" >}}
266+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L89" >}}
267267
**Note**: Java also allows setting log level by System Property:\
268268
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_LEVEL_PROPERTY`\
269269
Property value: String representation of `ChromiumDriverLogLevel` enum
270270
{{% /tab %}}
271271
{{< tab header="Python" >}}
272-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L69" >}}
272+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L70" >}}
273273
{{< /tab >}}
274274
{{< tab header="CSharp" >}}
275275
{{< badge-implementation >}}
@@ -295,13 +295,13 @@ The log output will be managed by the driver, not the process, so minor differen
295295

296296
{{< tabpane text=true langEqualsHeader=true >}}
297297
{{% tab header="Java" %}}
298-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L101-L102" >}}
298+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L106-L107" >}}
299299
**Note**: Java also allows toggling these features by System Property:\
300300
Property keys: `ChromeDriverService.CHROME_DRIVER_APPEND_LOG_PROPERTY` and `ChromeDriverService.CHROME_DRIVER_READABLE_TIMESTAMP`\
301301
Property value: `"true"` or `"false"`
302302
{{% /tab %}}
303303
{{< tab header="Python" >}}
304-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L80" >}}
304+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L81" >}}
305305
{{< /tab >}}
306306
{{< tab header="CSharp" >}}
307307
{{< badge-implementation >}}
@@ -325,13 +325,13 @@ Note that this is an unsupported feature, and bugs will not be investigated.
325325

326326
{{< tabpane text=true langEqualsHeader=true >}}
327327
{{% tab header="Java" %}}
328-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L120" >}}
328+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L125" >}}
329329
**Note**: Java also allows disabling build checks by System Property:\
330330
Property key: `ChromeDriverService.CHROME_DRIVER_DISABLE_BUILD_CHECK`\
331331
Property value: `"true"` or `"false"`
332332
{{% /tab %}}
333333
{{< tab header="Python" >}}
334-
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L91" >}}
334+
{{< gh-codeblock path="examples/python/tests/browsers/test_chrome.py#L92" >}}
335335
{{< /tab >}}
336336
{{< tab header="CSharp" >}}
337337
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L144" >}}

0 commit comments

Comments
 (0)