Skip to content

Commit 1ec3485

Browse files
committed
service documentation translation pages were not updated
[deploy site]
1 parent c7c480c commit 1ec3485

File tree

4 files changed

+31
-252
lines changed

4 files changed

+31
-252
lines changed

website_and_docs/content/documentation/webdriver/drivers/service.en.md

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ If you want the driver to run on a specific port, you may specify it as follows:
9595
{{< /tab >}}
9696
{{< /tabpane >}}
9797

98+
<span id="setting-log-output"></span>
9899
## Logging
99100

100101
Logging functionality varies between browsers. Most browsers allow you to

website_and_docs/content/documentation/webdriver/drivers/service.ja.md

+10-84
Original file line numberDiff line numberDiff line change
@@ -91,87 +91,13 @@ If you want the driver to run on a specific port, you may specify it as follows:
9191
{{< /tab >}}
9292
{{< /tabpane >}}
9393

94-
## Setting log output
95-
96-
Getting driver logs can be helpful for debugging various issues. The Service class lets you
97-
direct where the logs will go
98-
99-
Currently, the default behavior for logging varies by language (and sometimes browser):
100-
101-
{{< tabpane text=true langEqualsHeader=true >}}
102-
{{% tab header="Java" %}}
103-
Logging output defaults to STDERR
104-
{{% /tab %}}
105-
{{% tab header="Python" %}}
106-
Logging output defaults to none, except for Firefox, which defaults to "geckodriver.log"
107-
{{% /tab %}}
108-
{{% tab header="CSharp" %}}
109-
Logging output defaults to none
110-
{{% /tab %}}
111-
{{% tab header="Ruby" %}}
112-
Logging output defaults to none, unless the WebDriver logger level is set to `:debug`,
113-
in which case the driver logging is sent to the same output as the Selenium logging.
114-
{{% /tab %}}
115-
{{% tab header="JavaScript" %}}
116-
{{% /tab %}}
117-
{{% tab header="Kotlin" %}}
118-
Logging output defaults to STDERR
119-
{{% /tab %}}
120-
{{< /tabpane >}}
121-
122-
### File output
123-
124-
To change the logging output to save to a specific file:
125-
126-
{{< tabpane text=true langEqualsHeader=true >}}
127-
{{< tab header="Java" >}}
128-
Java allows you to set this by method:
129-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L52-L54" >}}
130-
Or by System Property:
131-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L61-L62" >}}
132-
{{< /tab >}}
133-
{{< tab header="Python" >}}
134-
{{< gh-codeblock path="examples/python/tests/drivers/test_service.py#L33" >}}
135-
{{< /tab >}}
136-
{{< tab header="CSharp" >}}
137-
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Drivers/ServiceTest.cs#L46" >}}
138-
{{< /tab >}}
139-
{{< tab header="Ruby" >}}
140-
{{< gh-codeblock path="examples/ruby/spec/drivers/service_spec.rb#L32" >}}
141-
{{< /tab >}}
142-
{{< tab header="JavaScript" >}}
143-
{{< badge-code >}}
144-
{{< /tab >}}
145-
{{< tab header="Kotlin" >}}
146-
{{< badge-code >}}
147-
{{< /tab >}}
148-
{{< /tabpane >}}
149-
150-
### Console output
151-
152-
To change the logging output to display in the console as STDOUT:
153-
154-
{{< tabpane text=true langEqualsHeader=true >}}
155-
{{% tab header="Java" %}}
156-
Java allows you to set this by method:
157-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L69-L71" >}}
158-
Or by System Property:
159-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L78-L79" >}}
160-
{{% /tab %}}
161-
{{% tab header="Python" %}}
162-
This is not yet supported in Python
163-
{{% /tab %}}
164-
{{% tab header="CSharp" %}}
165-
This is not yet supported in .NET
166-
{{% /tab %}}
167-
{{< tab header="Ruby" >}}
168-
{{< gh-codeblock path="examples/ruby/spec/drivers/service_spec.rb#L41" >}}
169-
{{< /tab >}}
170-
{{< tab header="JavaScript" >}}
171-
{{< badge-code >}}
172-
{{< /tab >}}
173-
{{< tab header="Kotlin" >}}
174-
{{< badge-code >}}
175-
{{< /tab >}}
176-
{{< /tabpane >}}
177-
94+
<span id="setting-log-output"></span>
95+
## Logging
96+
97+
Logging functionality varies between browsers. Most browsers allow you to
98+
specify location and level of logs. Take a look at the respective browser page:
99+
* [Chrome]({{< ref "../browsers/chrome#service" >}})
100+
* [Edge]({{< ref "../browsers/edge#service" >}})
101+
* [Firefox]({{< ref "../browsers/firefox#service" >}})
102+
* [Internet Explorer]({{< ref "../browsers/internet_explorer#service" >}})
103+
* [Safari]({{< ref "../browsers/safari#service" >}})

website_and_docs/content/documentation/webdriver/drivers/service.pt-br.md

+10-84
Original file line numberDiff line numberDiff line change
@@ -91,87 +91,13 @@ If you want the driver to run on a specific port, you may specify it as follows:
9191
{{< /tab >}}
9292
{{< /tabpane >}}
9393

94-
## Setting log output
95-
96-
Getting driver logs can be helpful for debugging various issues. The Service class lets you
97-
direct where the logs will go
98-
99-
Currently, the default behavior for logging varies by language (and sometimes browser):
100-
101-
{{< tabpane text=true langEqualsHeader=true >}}
102-
{{% tab header="Java" %}}
103-
Logging output defaults to STDERR
104-
{{% /tab %}}
105-
{{% tab header="Python" %}}
106-
Logging output defaults to none, except for Firefox, which defaults to "geckodriver.log"
107-
{{% /tab %}}
108-
{{% tab header="CSharp" %}}
109-
Logging output defaults to none
110-
{{% /tab %}}
111-
{{% tab header="Ruby" %}}
112-
Logging output defaults to none, unless the WebDriver logger level is set to `:debug`,
113-
in which case the driver logging is sent to the same output as the Selenium logging.
114-
{{% /tab %}}
115-
{{% tab header="JavaScript" %}}
116-
{{% /tab %}}
117-
{{% tab header="Kotlin" %}}
118-
Logging output defaults to STDERR
119-
{{% /tab %}}
120-
{{< /tabpane >}}
121-
122-
### File output
123-
124-
To change the logging output to save to a specific file:
125-
126-
{{< tabpane text=true langEqualsHeader=true >}}
127-
{{< tab header="Java" >}}
128-
Java allows you to set this by method:
129-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L52-L54" >}}
130-
Or by System Property:
131-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L61-L62" >}}
132-
{{< /tab >}}
133-
{{< tab header="Python" >}}
134-
{{< gh-codeblock path="examples/python/tests/drivers/test_service.py#L33" >}}
135-
{{< /tab >}}
136-
{{< tab header="CSharp" >}}
137-
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Drivers/ServiceTest.cs#L46" >}}
138-
{{< /tab >}}
139-
{{< tab header="Ruby" >}}
140-
{{< gh-codeblock path="examples/ruby/spec/drivers/service_spec.rb#L32" >}}
141-
{{< /tab >}}
142-
{{< tab header="JavaScript" >}}
143-
{{< badge-code >}}
144-
{{< /tab >}}
145-
{{< tab header="Kotlin" >}}
146-
{{< badge-code >}}
147-
{{< /tab >}}
148-
{{< /tabpane >}}
149-
150-
### Console output
151-
152-
To change the logging output to display in the console as STDOUT:
153-
154-
{{< tabpane text=true langEqualsHeader=true >}}
155-
{{% tab header="Java" %}}
156-
Java allows you to set this by method:
157-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L69-L71" >}}
158-
Or by System Property:
159-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L78-L79" >}}
160-
{{% /tab %}}
161-
{{% tab header="Python" %}}
162-
This is not yet supported in Python
163-
{{% /tab %}}
164-
{{% tab header="CSharp" %}}
165-
This is not yet supported in .NET
166-
{{% /tab %}}
167-
{{< tab header="Ruby" >}}
168-
{{< gh-codeblock path="examples/ruby/spec/drivers/service_spec.rb#L41" >}}
169-
{{< /tab >}}
170-
{{< tab header="JavaScript" >}}
171-
{{< badge-code >}}
172-
{{< /tab >}}
173-
{{< tab header="Kotlin" >}}
174-
{{< badge-code >}}
175-
{{< /tab >}}
176-
{{< /tabpane >}}
177-
94+
<span id="setting-log-output"></span>
95+
## Logging
96+
97+
Logging functionality varies between browsers. Most browsers allow you to
98+
specify location and level of logs. Take a look at the respective browser page:
99+
* [Chrome]({{< ref "../browsers/chrome#service" >}})
100+
* [Edge]({{< ref "../browsers/edge#service" >}})
101+
* [Firefox]({{< ref "../browsers/firefox#service" >}})
102+
* [Internet Explorer]({{< ref "../browsers/internet_explorer#service" >}})
103+
* [Safari]({{< ref "../browsers/safari#service" >}})

website_and_docs/content/documentation/webdriver/drivers/service.zh-cn.md

+10-84
Original file line numberDiff line numberDiff line change
@@ -91,87 +91,13 @@ If you want the driver to run on a specific port, you may specify it as follows:
9191
{{< /tab >}}
9292
{{< /tabpane >}}
9393

94-
## Setting log output
95-
96-
Getting driver logs can be helpful for debugging various issues. The Service class lets you
97-
direct where the logs will go
98-
99-
Currently, the default behavior for logging varies by language (and sometimes browser):
100-
101-
{{< tabpane text=true langEqualsHeader=true >}}
102-
{{% tab header="Java" %}}
103-
Logging output defaults to STDERR
104-
{{% /tab %}}
105-
{{% tab header="Python" %}}
106-
Logging output defaults to none, except for Firefox, which defaults to "geckodriver.log"
107-
{{% /tab %}}
108-
{{% tab header="CSharp" %}}
109-
Logging output defaults to none
110-
{{% /tab %}}
111-
{{% tab header="Ruby" %}}
112-
Logging output defaults to none, unless the WebDriver logger level is set to `:debug`,
113-
in which case the driver logging is sent to the same output as the Selenium logging.
114-
{{% /tab %}}
115-
{{% tab header="JavaScript" %}}
116-
{{% /tab %}}
117-
{{% tab header="Kotlin" %}}
118-
Logging output defaults to STDERR
119-
{{% /tab %}}
120-
{{< /tabpane >}}
121-
122-
### File output
123-
124-
To change the logging output to save to a specific file:
125-
126-
{{< tabpane text=true langEqualsHeader=true >}}
127-
{{< tab header="Java" >}}
128-
Java allows you to set this by method:
129-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L52-L54" >}}
130-
Or by System Property:
131-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L61-L62" >}}
132-
{{< /tab >}}
133-
{{< tab header="Python" >}}
134-
{{< gh-codeblock path="examples/python/tests/drivers/test_service.py#L33" >}}
135-
{{< /tab >}}
136-
{{< tab header="CSharp" >}}
137-
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/Drivers/ServiceTest.cs#L46" >}}
138-
{{< /tab >}}
139-
{{< tab header="Ruby" >}}
140-
{{< gh-codeblock path="examples/ruby/spec/drivers/service_spec.rb#L32" >}}
141-
{{< /tab >}}
142-
{{< tab header="JavaScript" >}}
143-
{{< badge-code >}}
144-
{{< /tab >}}
145-
{{< tab header="Kotlin" >}}
146-
{{< badge-code >}}
147-
{{< /tab >}}
148-
{{< /tabpane >}}
149-
150-
### Console output
151-
152-
To change the logging output to display in the console as STDOUT:
153-
154-
{{< tabpane text=true langEqualsHeader=true >}}
155-
{{% tab header="Java" %}}
156-
Java allows you to set this by method:
157-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L69-L71" >}}
158-
Or by System Property:
159-
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/drivers/ServiceTest.java#L78-L79" >}}
160-
{{% /tab %}}
161-
{{% tab header="Python" %}}
162-
This is not yet supported in Python
163-
{{% /tab %}}
164-
{{% tab header="CSharp" %}}
165-
This is not yet supported in .NET
166-
{{% /tab %}}
167-
{{< tab header="Ruby" >}}
168-
{{< gh-codeblock path="examples/ruby/spec/drivers/service_spec.rb#L41" >}}
169-
{{< /tab >}}
170-
{{< tab header="JavaScript" >}}
171-
{{< badge-code >}}
172-
{{< /tab >}}
173-
{{< tab header="Kotlin" >}}
174-
{{< badge-code >}}
175-
{{< /tab >}}
176-
{{< /tabpane >}}
177-
94+
<span id="setting-log-output"></span>
95+
## Logging
96+
97+
Logging functionality varies between browsers. Most browsers allow you to
98+
specify location and level of logs. Take a look at the respective browser page:
99+
* [Chrome]({{< ref "../browsers/chrome#service" >}})
100+
* [Edge]({{< ref "../browsers/edge#service" >}})
101+
* [Firefox]({{< ref "../browsers/firefox#service" >}})
102+
* [Internet Explorer]({{< ref "../browsers/internet_explorer#service" >}})
103+
* [Safari]({{< ref "../browsers/safari#service" >}})

0 commit comments

Comments
 (0)