Skip to content

Commit

Permalink
fix all double-parentheses links
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Aug 3, 2023
1 parent 279fc5a commit d671027
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ There are only 5 basic commands that can be executed on an element:
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
* submit (only applies to form elements)
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
* select (see [Select List Elements]({{< ref "select_lists.md" >}})

## Additional validations

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ There are only 5 basic commands that can be executed on an element:
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
* submit (only applies to form elements)
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
* select (see [Select List Elements]({{< ref "select_lists.md" >}})

## Additional validations

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ There are only 5 basic commands that can be executed on an element:
* [send keys](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
* [clear](https://w3c.github.io/webdriver/#element-send-keys) (only applies to text fields and content editable elements)
* submit (only applies to form elements)
* select (see [Select List Elements]({{< ref "select_lists.md" >}}))
* select (see [Select List Elements]({{< ref "select_lists.md" >}})

## Additional validations

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description: >
* [发送键位](https://w3c.github.io/webdriver/#element-send-keys) (仅适用于文本字段和内容可编辑元素)
* [清除](https://w3c.github.io/webdriver/#element-send-keys) (仅适用于文本字段和内容可编辑元素)
* 提交 (仅适用于表单元素)
* 选择 (参见 [选择列表元素]({{< ref "select_lists.md" >}}))
* 选择 (参见 [选择列表元素]({{< ref "select_lists.md" >}})

## 附加验证

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: >
These are classes used to describe what needs to be waited for.
---

Expected Conditions are used with [Explicit Waits](({{< ref "waits#explicit-waits" >}})).
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
Instead of defining the block of code to be executed with a _lambda_, an expected
conditions method can be created to represent common things that get waited on. Some
methods take locators as arguments, others take elements as arguments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: >
These are classes used to describe what needs to be waited for.
---

Expected Conditions are used with [Explicit Waits](({{< ref "waits#explicit-waits" >}})).
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
Instead of defining the block of code to be executed with a _lambda_, an expected
conditions method can be created to represent common things that get waited on. Some
methods take locators as arguments, others take elements as arguments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: >
These are classes used to describe what needs to be waited for.
---

Expected Conditions are used with [Explicit Waits](({{< ref "waits#explicit-waits" >}})).
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
Instead of defining the block of code to be executed with a _lambda_, an expected
conditions method can be created to represent common things that get waited on. Some
methods take locators as arguments, others take elements as arguments.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: >
These are classes used to describe what needs to be waited for.
---

Expected Conditions are used with [Explicit Waits](({{< ref "waits#explicit-waits" >}})).
Expected Conditions are used with [Explicit Waits]({{< ref "../waits#explicit-waits" >}}).
Instead of defining the block of code to be executed with a _lambda_, an expected
conditions method can be created to represent common things that get waited on. Some
methods take locators as arguments, others take elements as arguments.
Expand Down
10 changes: 5 additions & 5 deletions website_and_docs/content/documentation/webdriver/waits.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ when the code is ready to execute the next Selenium command.
Similarly, in a lot of single page applications, elements get dynamically
added to a page or change visibility based on a click.
An element must be both present and
[displayed](({{< ref "elements/information/#is-displayed" >}})) on the page
[displayed]({{< ref "elements/information/#is-displayed" >}}) on the page
in order for Selenium to interact with it.

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

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

This is a global setting that applies to every element location call for the entire session.
Expand Down Expand Up @@ -99,12 +99,12 @@ Another nice feature is that, by default, the Selenium Wait class automatically
{{< tabpane text=true langEqualsHeader=true >}}
{{% tab header="Java" %}}
This example shows the condition being waited for as a _lambda_. Java also supports
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/waits/WaitsTest.java#L57-L63" >}}
{{% /tab %}}
{{% tab header="Python" %}}
This example shows the condition being waited for as a _lambda_. Python also supports
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< gh-codeblock path="examples/python/tests/waits/test_waits.py#L38-L44" >}}
{{% /tab %}}
{{< tab header="CSharp" >}}
Expand All @@ -114,7 +114,7 @@ This example shows the condition being waited for as a _lambda_. Python also sup
{{< gh-codeblock path="examples/ruby/spec/waits/waits_spec.rb#L39-L45" >}}
{{< /tab >}}
{{% tab header="JavaScript" %}}
JavaScript also supports [Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
JavaScript also supports [Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< badge-code >}}
{{% /tab %}}
{{< tab header="Kotlin" >}}
Expand Down
10 changes: 5 additions & 5 deletions website_and_docs/content/documentation/webdriver/waits.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ when the code is ready to execute the next Selenium command.
Similarly, in a lot of single page applications, elements get dynamically
added to a page or change visibility based on a click.
An element must be both present and
[displayed](({{< ref "elements/information/#is-displayed" >}})) on the page
[displayed]({{< ref "elements/information/#is-displayed" >}}) on the page
in order for Selenium to interact with it.

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

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

This is a global setting that applies to every element location call for the entire session.
Expand Down Expand Up @@ -99,12 +99,12 @@ Another nice feature is that, by default, the Selenium Wait class automatically
{{< tabpane text=true langEqualsHeader=true >}}
{{% tab header="Java" %}}
This example shows the condition being waited for as a _lambda_. Java also supports
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/waits/WaitsTest.java#L57-L63" >}}
{{% /tab %}}
{{% tab header="Python" %}}
This example shows the condition being waited for as a _lambda_. Python also supports
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< gh-codeblock path="examples/python/tests/waits/test_waits.py#L38-L44" >}}
{{% /tab %}}
{{< tab header="CSharp" >}}
Expand All @@ -114,7 +114,7 @@ This example shows the condition being waited for as a _lambda_. Python also sup
{{< gh-codeblock path="examples/ruby/spec/waits/waits_spec.rb#L39-L45" >}}
{{< /tab >}}
{{% tab header="JavaScript" %}}
JavaScript also supports [Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
JavaScript also supports [Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< badge-code >}}
{{% /tab %}}
{{< tab header="Kotlin" >}}
Expand Down
10 changes: 5 additions & 5 deletions website_and_docs/content/documentation/webdriver/waits.pt-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ when the code is ready to execute the next Selenium command.
Similarly, in a lot of single page applications, elements get dynamically
added to a page or change visibility based on a click.
An element must be both present and
[displayed](({{< ref "elements/information/#is-displayed" >}})) on the page
[displayed]({{< ref "elements/information/#is-displayed" >}}) on the page
in order for Selenium to interact with it.

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

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

This is a global setting that applies to every element location call for the entire session.
Expand Down Expand Up @@ -99,12 +99,12 @@ Another nice feature is that, by default, the Selenium Wait class automatically
{{< tabpane text=true langEqualsHeader=true >}}
{{% tab header="Java" %}}
This example shows the condition being waited for as a _lambda_. Java also supports
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/waits/WaitsTest.java#L57-L63" >}}
{{% /tab %}}
{{% tab header="Python" %}}
This example shows the condition being waited for as a _lambda_. Python also supports
[Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
[Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< gh-codeblock path="examples/python/tests/waits/test_waits.py#L38-L44" >}}
{{% /tab %}}
{{< tab header="CSharp" >}}
Expand All @@ -114,7 +114,7 @@ This example shows the condition being waited for as a _lambda_. Python also sup
{{< gh-codeblock path="examples/ruby/spec/waits/waits_spec.rb#L39-L45" >}}
{{< /tab >}}
{{% tab header="JavaScript" %}}
JavaScript also supports [Expected Conditions](({{< ref "support_features/expected_conditions" >}}))
JavaScript also supports [Expected Conditions]({{< ref "support_features/expected_conditions" >}})
{{< badge-code >}}
{{% /tab %}}
{{< tab header="Kotlin" >}}
Expand Down
10 changes: 5 additions & 5 deletions website_and_docs/content/documentation/webdriver/waits.zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ when the code is ready to execute the next Selenium command.
Similarly, in a lot of single page applications, elements get dynamically
added to a page or change visibility based on a click.
An element must be both present and
[displayed](({{< ref "elements/information/#is-displayed" >}})) on the page
[displayed]({{< ref "elements/information/#is-displayed" >}}) on the page
in order for Selenium to interact with it.

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

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

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

0 comments on commit d671027

Please sign in to comment.