Skip to content

Commit d671027

Browse files
committed
fix all double-parentheses links
1 parent 279fc5a commit d671027

File tree

12 files changed

+28
-28
lines changed

12 files changed

+28
-28
lines changed

website_and_docs/content/documentation/webdriver/elements/interactions.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ There are only 5 basic commands that can be executed on an element:
1414
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1515
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1616
* submit (only applies to form elements)
17-
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
17+
* select (see [Select List Elements]({{< ref "select_lists.md" >}})
1818

1919
## Additional validations
2020

website_and_docs/content/documentation/webdriver/elements/interactions.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ There are only 5 basic commands that can be executed on an element:
1212
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1313
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1414
* submit (only applies to form elements)
15-
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
15+
* select (see [Select List Elements]({{< ref "select_lists.md" >}})
1616

1717
## Additional validations
1818

website_and_docs/content/documentation/webdriver/elements/interactions.pt-br.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ There are only 5 basic commands that can be executed on an element:
1212
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1313
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
1414
* submit (only applies to form elements)
15-
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
15+
* select (see [Select List Elements]({{< ref "select_lists.md" >}})
1616

1717
## Additional validations
1818

website_and_docs/content/documentation/webdriver/elements/interactions.zh-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: >
1212
* [发送键位](https://w3c.github.io/webdriver/#element-send-keys) (仅适用于文本字段和内容可编辑元素)
1313
* [清除](https://w3c.github.io/webdriver/#element-send-keys) (仅适用于文本字段和内容可编辑元素)
1414
* 提交 (仅适用于表单元素)
15-
* 选择 (参见 [选择列表元素]({{< ref "select_lists.md" >}}))
15+
* 选择 (参见 [选择列表元素]({{< ref "select_lists.md" >}})
1616

1717
## 附加验证
1818

website_and_docs/content/documentation/webdriver/support_features/expected_conditions.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >
66
These are classes used to describe what needs to be waited for.
77
---
88

9-
Expected Conditions are used with [Explicit Waits](({{< ref "waits#explicit-waits" >}})).
9+
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
1010
Instead of defining the block of code to be executed with a _lambda_, an expected
1111
conditions method can be created to represent common things that get waited on. Some
1212
methods take locators as arguments, others take elements as arguments.

website_and_docs/content/documentation/webdriver/support_features/expected_conditions.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >
66
These are classes used to describe what needs to be waited for.
77
---
88

9-
Expected Conditions are used with [Explicit Waits](({{< ref "waits#explicit-waits" >}})).
9+
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
1010
Instead of defining the block of code to be executed with a _lambda_, an expected
1111
conditions method can be created to represent common things that get waited on. Some
1212
methods take locators as arguments, others take elements as arguments.

website_and_docs/content/documentation/webdriver/support_features/expected_conditions.pt-br.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >
66
These are classes used to describe what needs to be waited for.
77
---
88

9-
Expected Conditions are used with [Explicit Waits](({{< ref "waits#explicit-waits" >}})).
9+
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
1010
Instead of defining the block of code to be executed with a _lambda_, an expected
1111
conditions method can be created to represent common things that get waited on. Some
1212
methods take locators as arguments, others take elements as arguments.

website_and_docs/content/documentation/webdriver/support_features/expected_conditions.zh-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: >
66
These are classes used to describe what needs to be waited for.
77
---
88

9-
Expected Conditions are used with [Explicit Waits](({{< ref "waits#explicit-waits" >}})).
9+
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
1010
Instead of defining the block of code to be executed with a _lambda_, an expected
1111
conditions method can be created to represent common things that get waited on. Some
1212
methods take locators as arguments, others take elements as arguments.

website_and_docs/content/documentation/webdriver/waits.en.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ when the code is ready to execute the next Selenium command.
2424
Similarly, in a lot of single page applications, elements get dynamically
2525
added to a page or change visibility based on a click.
2626
An element must be both present and
27-
[displayed](({{< ref "elements/information/#is-displayed" >}})) on the page
27+
[displayed]({{< ref "elements/information/#is-displayed" >}}) on the page
2828
in order for Selenium to interact with it.
2929

3030
Take this page for example: https://www.selenium.dev/selenium/web/dynamic.html
@@ -46,7 +46,7 @@ Selenium provides two different mechanisms for synchronization that are better.
4646

4747
## Implicit waits
4848
Selenium has a built-in way to automatically wait for elements called an _implicit wait_.
49-
An implicit wait value can be set either with the [timeouts](({{< ref "drivers/options#timeouts" >}}))
49+
An implicit wait value can be set either with the [timeouts]({{< ref "drivers/options#timeouts" >}})
5050
capability in the browser options, or with a driver method (as shown below).
5151

5252
This is a global setting that applies to every element location call for the entire session.
@@ -99,12 +99,12 @@ Another nice feature is that, by default, the Selenium Wait class automatically
9999
{{< tabpane text=true langEqualsHeader=true >}}
100100
{{% tab header="Java" %}}
101101
This example shows the condition being waited for as a _lambda_. Java also supports
102-
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
102+
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
103103
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/waits/WaitsTest.java#L57-L63" >}}
104104
{{% /tab %}}
105105
{{% tab header="Python" %}}
106106
This example shows the condition being waited for as a _lambda_. Python also supports
107-
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
107+
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
108108
{{< gh-codeblock path="examples/python/tests/waits/test_waits.py#L38-L44" >}}
109109
{{% /tab %}}
110110
{{< tab header="CSharp" >}}
@@ -114,7 +114,7 @@ This example shows the condition being waited for as a _lambda_. Python also sup
114114
{{< gh-codeblock path="examples/ruby/spec/waits/waits_spec.rb#L39-L45" >}}
115115
{{< /tab >}}
116116
{{% tab header="JavaScript" %}}
117-
JavaScript also supports [Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
117+
JavaScript also supports [Expected Conditions]({{< ref "support_features/expected_conditions" >}})
118118
{{< badge-code >}}
119119
{{% /tab %}}
120120
{{< tab header="Kotlin" >}}

website_and_docs/content/documentation/webdriver/waits.ja.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ when the code is ready to execute the next Selenium command.
2424
Similarly, in a lot of single page applications, elements get dynamically
2525
added to a page or change visibility based on a click.
2626
An element must be both present and
27-
[displayed](({{< ref "elements/information/#is-displayed" >}})) on the page
27+
[displayed]({{< ref "elements/information/#is-displayed" >}}) on the page
2828
in order for Selenium to interact with it.
2929

3030
Take this page for example: https://www.selenium.dev/selenium/web/dynamic.html
@@ -46,7 +46,7 @@ Selenium provides two different mechanisms for synchronization that are better.
4646

4747
## Implicit waits
4848
Selenium has a built-in way to automatically wait for elements called an _implicit wait_.
49-
An implicit wait value can be set either with the [timeouts](({{< ref "drivers/options#timeouts" >}}))
49+
An implicit wait value can be set either with the [timeouts]({{< ref "drivers/options#timeouts" >}})
5050
capability in the browser options, or with a driver method (as shown below).
5151

5252
This is a global setting that applies to every element location call for the entire session.
@@ -99,12 +99,12 @@ Another nice feature is that, by default, the Selenium Wait class automatically
9999
{{< tabpane text=true langEqualsHeader=true >}}
100100
{{% tab header="Java" %}}
101101
This example shows the condition being waited for as a _lambda_. Java also supports
102-
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
102+
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
103103
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/waits/WaitsTest.java#L57-L63" >}}
104104
{{% /tab %}}
105105
{{% tab header="Python" %}}
106106
This example shows the condition being waited for as a _lambda_. Python also supports
107-
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
107+
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
108108
{{< gh-codeblock path="examples/python/tests/waits/test_waits.py#L38-L44" >}}
109109
{{% /tab %}}
110110
{{< tab header="CSharp" >}}
@@ -114,7 +114,7 @@ This example shows the condition being waited for as a _lambda_. Python also sup
114114
{{< gh-codeblock path="examples/ruby/spec/waits/waits_spec.rb#L39-L45" >}}
115115
{{< /tab >}}
116116
{{% tab header="JavaScript" %}}
117-
JavaScript also supports [Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
117+
JavaScript also supports [Expected Conditions]({{< ref "support_features/expected_conditions" >}})
118118
{{< badge-code >}}
119119
{{% /tab %}}
120120
{{< tab header="Kotlin" >}}

0 commit comments

Comments
 (0)