Skip to content

Commit a9fd079

Browse files
committed
fix code lines in chrome.md [deploy site]
1 parent e0e2842 commit a9fd079

File tree

4 files changed

+32
-32
lines changed

4 files changed

+32
-32
lines changed

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

+8-8
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ Starting a Chrome session with basic defined options looks like this:
2323

2424
{{< tabpane text=true langEqualsHeader=true >}}
2525
{{< tab header="Java" >}}
26-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L33-L34" >}}
26+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L39-L40" >}}
2727
{{< /tab >}}
2828
{{% tab header="Python" %}}
29-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L9-L10" >}}
29+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L10-L11" >}}
3030
{{% /tab %}}
3131
{{< tab header="CSharp" >}}
3232
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L30-L31" >}}
@@ -55,10 +55,10 @@ Add an argument to options:
5555

5656
{{< tabpane text=true langEqualsHeader=true >}}
5757
{{< tab header="Java" >}}
58-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L40" >}}
58+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L46" >}}
5959
{{< /tab >}}
6060
{{% tab header="Python" %}}
61-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L17" >}}
61+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L18" >}}
6262
{{% /tab %}}
6363
{{< tab header="CSharp" >}}
6464
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L39" >}}
@@ -143,7 +143,7 @@ Add a binary to options:
143143
**Note**: This is already the default behavior in Java.
144144
{{% /tab %}}
145145
{{% tab header="Python" %}}
146-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L27" >}}
146+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L28" >}}
147147
{{% /tab %}}
148148
{{% tab header="CSharp" %}}
149149
**Note**: This is already the default behavior in .NET.
@@ -171,10 +171,10 @@ Set excluded arguments on options:
171171

172172
{{< tabpane text=true langEqualsHeader=true >}}
173173
{{< tab header="Java" >}}
174-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L47" >}}
174+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L53" >}}
175175
{{< /tab >}}
176176
{{% tab header="Python" %}}
177-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L37" >}}
177+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L38" >}}
178178
{{% /tab %}}
179179
{{< tab header="CSharp" >}}
180180
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L64" >}}
@@ -207,7 +207,7 @@ To change the logging output to save to a specific file:
207207

208208
{{< tabpane text=true langEqualsHeader=true >}}
209209
{{% tab header="Java" %}}
210-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L55" >}}
210+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L60" >}}
211211
**Note**: Java also allows setting file output by System Property:\
212212
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
213213
Property value: String representing path to log file

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

+8-8
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Chrome に固有のCapabilityは、Google の[Capabilities & ChromeOptions](http
2222

2323
{{< tabpane text=true langEqualsHeader=true >}}
2424
{{< tab header="Java" >}}
25-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L33-L34" >}}
25+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L39-L40" >}}
2626
{{< /tab >}}
2727
{{% tab header="Python" %}}
28-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L9-L10" >}}
28+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L10-L11" >}}
2929
{{% /tab %}}
3030
{{< tab header="CSharp" >}}
3131
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L30-L31" >}}
@@ -56,10 +56,10 @@ Add an argument to options:
5656

5757
{{< tabpane text=true langEqualsHeader=true >}}
5858
{{< tab header="Java" >}}
59-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L40" >}}
59+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L46" >}}
6060
{{< /tab >}}
6161
{{% tab header="Python" %}}
62-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L17" >}}
62+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L18" >}}
6363
{{% /tab %}}
6464
{{< tab header="CSharp" >}}
6565
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L39" >}}
@@ -145,7 +145,7 @@ please use the `load-extension` argument instead, as mentioned in
145145
**Note**: This is already the default behavior in Java.
146146
{{% /tab %}}
147147
{{% tab header="Python" %}}
148-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L27" >}}
148+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L28" >}}
149149
{{% /tab %}}
150150
{{% tab header="CSharp" %}}
151151
**Note**: This is already the default behavior in .NET.
@@ -175,10 +175,10 @@ can be parsed from the
175175

176176
{{< tabpane text=true langEqualsHeader=true >}}
177177
{{< tab header="Java" >}}
178-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L47" >}}
178+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L53" >}}
179179
{{< /tab >}}
180180
{{% tab header="Python" %}}
181-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L37" >}}
181+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L38" >}}
182182
{{% /tab %}}
183183
{{< tab header="CSharp" >}}
184184
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L64" >}}
@@ -211,7 +211,7 @@ To change the logging output to save to a specific file:
211211

212212
{{< tabpane text=true langEqualsHeader=true >}}
213213
{{% tab header="Java" %}}
214-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L55" >}}
214+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L60" >}}
215215
**Note**: Java also allows setting file output by System Property:\
216216
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
217217
Property value: String representing path to log file

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

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Este é um exemplo de como iniciar uma sessão Chrome com um conjunto de opçõe
2121

2222
{{< tabpane text=true langEqualsHeader=true >}}
2323
{{< tab header="Java" >}}
24-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L33-L34" >}}
24+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L39-L40" >}}
2525
{{< /tab >}}
2626
{{% tab header="Python" %}}
27-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L9-L10" >}}
27+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L10-L11" >}}
2828
{{% /tab %}}
2929
{{< tab header="CSharp" >}}
3030
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L30-L31" >}}
@@ -55,10 +55,10 @@ Add an argument to options:
5555

5656
{{< tabpane text=true langEqualsHeader=true >}}
5757
{{< tab header="Java" >}}
58-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L40" >}}
58+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L46" >}}
5959
{{< /tab >}}
6060
{{% tab header="Python" %}}
61-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L17" >}}
61+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L18" >}}
6262
{{% /tab %}}
6363
{{< tab header="CSharp" >}}
6464
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L39" >}}
@@ -141,7 +141,7 @@ Adicionar detach:
141141
**Note**: This is already the default behavior in Java.
142142
{{% /tab %}}
143143
{{% tab header="Python" %}}
144-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L27" >}}
144+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L28" >}}
145145
{{% /tab %}}
146146
{{% tab header="CSharp" %}}
147147
**Note**: This is already the default behavior in .NET.
@@ -170,10 +170,10 @@ Exclua parametros:
170170

171171
{{< tabpane text=true langEqualsHeader=true >}}
172172
{{< tab header="Java" >}}
173-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L47" >}}
173+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L53" >}}
174174
{{< /tab >}}
175175
{{% tab header="Python" %}}
176-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L37" >}}
176+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L38" >}}
177177
{{% /tab %}}
178178
{{< tab header="CSharp" >}}
179179
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L64" >}}
@@ -206,7 +206,7 @@ To change the logging output to save to a specific file:
206206

207207
{{< tabpane text=true langEqualsHeader=true >}}
208208
{{% tab header="Java" %}}
209-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L55" >}}
209+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L60" >}}
210210
**Note**: Java also allows setting file output by System Property:\
211211
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
212212
Property value: String representing path to log file

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

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Chrome浏览器的特有功能可以在谷歌的页面找到: [Capabilities & Ch
2121

2222
{{< tabpane text=true langEqualsHeader=true >}}
2323
{{< tab header="Java" >}}
24-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L33-L34" >}}
24+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L39-L40" >}}
2525
{{< /tab >}}
2626
{{% tab header="Python" %}}
27-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L9-L10" >}}
27+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L10-L11" >}}
2828
{{% /tab %}}
2929
{{< tab header="CSharp" >}}
3030
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L30-L31" >}}
@@ -55,10 +55,10 @@ Add an argument to options:
5555

5656
{{< tabpane text=true langEqualsHeader=true >}}
5757
{{< tab header="Java" >}}
58-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L40" >}}
58+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L46" >}}
5959
{{< /tab >}}
6060
{{% tab header="Python" %}}
61-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L17" >}}
61+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L18" >}}
6262
{{% /tab %}}
6363
{{< tab header="CSharp" >}}
6464
{{< gh-codeblock path="/examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L39" >}}
@@ -141,7 +141,7 @@ please use the `load-extension` argument instead, as mentioned in
141141
**Note**: This is already the default behavior in Java.
142142
{{% /tab %}}
143143
{{% tab header="Python" %}}
144-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L27" >}}
144+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L28" >}}
145145
{{% /tab %}}
146146
{{% tab header="CSharp" %}}
147147
**Note**: This is already the default behavior in .NET.
@@ -169,10 +169,10 @@ can be parsed from the
169169

170170
{{< tabpane text=true langEqualsHeader=true >}}
171171
{{< tab header="Java" >}}
172-
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L47" >}}
172+
{{< gh-codeblock path="/examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L53" >}}
173173
{{< /tab >}}
174174
{{% tab header="Python" %}}
175-
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L37" >}}
175+
{{< gh-codeblock path="/examples/python/tests/browsers/test_chrome.py#L38" >}}
176176
{{% /tab %}}
177177
{{< tab header="CSharp" >}}
178178
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Browsers/ChromeTest.cs#L64" >}}
@@ -205,7 +205,7 @@ To change the logging output to save to a specific file:
205205

206206
{{< tabpane text=true langEqualsHeader=true >}}
207207
{{% tab header="Java" %}}
208-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L55" >}}
208+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/browsers/ChromeTest.java#L60" >}}
209209
**Note**: Java also allows setting file output by System Property:\
210210
Property key: `ChromeDriverService.CHROME_DRIVER_LOG_PROPERTY`\
211211
Property value: String representing path to log file

0 commit comments

Comments
 (0)