Skip to content

Commit 65df04a

Browse files
committed
fixed address
1 parent 00da4d9 commit 65df04a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Solving our example with an implicit wait looks like this:
8282
{{< gh-codeblock path="/examples/javascript/test/waits/waits.spec.js#L39" >}}
8383
{{< /tab >}}
8484
{{< tab header="Kotlin" >}}
85-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L19" >}}
85+
{{< gh-codeblock path= "examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L19" >}}
8686
{{< /tab >}}
8787
{{< /tabpane >}}
8888

@@ -118,7 +118,7 @@ JavaScript also supports [Expected Conditions]({{< ref "support_features/expecte
118118
{{< gh-codeblock path="/examples/javascript/test/waits/waits.spec.js#L52" >}}
119119
{{% /tab %}}
120120
{{< tab header="Kotlin" >}}
121-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L36-L37" >}}
121+
{{< gh-codeblock path= "examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L36-L37" >}}
122122
{{< /tab >}}
123123
{{< /tabpane >}}
124124

@@ -154,6 +154,6 @@ The easiest way to customize Waits in Java is to use the `FluentWait` class:
154154
{{< badge-code >}}
155155
{{< /tab >}}
156156
{{< tab header="Kotlin" >}}
157-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L51-L60" >}}
157+
{{< gh-codeblock path= "examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L51-L60" >}}
158158
{{< /tab >}}
159159
{{< /tabpane >}}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Solving our example with an implicit wait looks like this:
8282
{{< gh-codeblock path="/examples/javascript/test/waits/waits.spec.js#L39" >}}
8383
{{< /tab >}}
8484
{{< tab header="Kotlin" >}}
85-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L19" >}}
85+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L19" >}}
8686
{{< /tab >}}
8787
{{< /tabpane >}}
8888

@@ -118,7 +118,7 @@ JavaScript also supports [Expected Conditions]({{< ref "support_features/expecte
118118
{{< gh-codeblock path="/examples/javascript/test/waits/waits.spec.js#L52" >}}
119119
{{% /tab %}}
120120
{{< tab header="Kotlin" >}}
121-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L36-L37" >}}
121+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L36-L37" >}}
122122
{{< /tab >}}
123123
{{< /tabpane >}}
124124

@@ -154,6 +154,6 @@ The easiest way to customize Waits in Java is to use the `FluentWait` class:
154154
{{< badge-code >}}
155155
{{< /tab >}}
156156
{{< tab header="Kotlin" >}}
157-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L51-L60" >}}
157+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L51-L60" >}}
158158
{{< /tab >}}
159159
{{< /tabpane >}}

website_and_docs/content/documentation/webdriver/waits.pt-br.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Solving our example with an implicit wait looks like this:
8282
{{< gh-codeblock path="/examples/javascript/test/waits/waits.spec.js#L39" >}}
8383
{{< /tab >}}
8484
{{< tab header="Kotlin" >}}
85-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L19" >}}
85+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L19" >}}
8686
{{< /tab >}}
8787
{{< /tabpane >}}
8888

@@ -118,7 +118,7 @@ JavaScript also supports [Expected Conditions]({{< ref "support_features/expecte
118118
{{< gh-codeblock path="/examples/javascript/test/waits/waits.spec.js#L52" >}}
119119
{{% /tab %}}
120120
{{< tab header="Kotlin" >}}
121-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L36-L37" >}}
121+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L36-L37" >}}
122122
{{< /tab >}}
123123
{{< /tabpane >}}
124124

@@ -154,6 +154,6 @@ The easiest way to customize Waits in Java is to use the `FluentWait` class:
154154
{{< badge-code >}}
155155
{{< /tab >}}
156156
{{< tab header="Kotlin" >}}
157-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L51-L60" >}}
157+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L51-L60" >}}
158158
{{< /tab >}}
159159
{{< /tabpane >}}

website_and_docs/content/documentation/webdriver/waits.zh-cn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Selenium 内置了一种自动等待元素出现的方式, 称为 _隐式等待_
9292
{{< gh-codeblock path="/examples/javascript/test/waits/waits.spec.js#L39" >}}
9393
{{< /tab >}}
9494
{{< tab header="Kotlin" >}}
95-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L19" >}}
95+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L19" >}}
9696
{{< /tab >}}
9797
{{< /tabpane >}}
9898

@@ -133,7 +133,7 @@ JavaScript also supports [Expected Conditions]({{< ref "support_features/expecte
133133
{{< gh-codeblock path="/examples/javascript/test/waits/waits.spec.js#L52" >}}
134134
{{% /tab %}}
135135
{{< tab header="Kotlin" >}}
136-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L36-L37" >}}
136+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L36-L37" >}}
137137
{{< /tab >}}
138138
{{< /tabpane >}}
139139

@@ -174,7 +174,7 @@ The easiest way to customize Waits in Java is to use the `FluentWait` class:
174174
{{< badge-code >}}
175175
{{< /tab >}}
176176
{{< tab header="Kotlin" >}}
177-
{{< gh-codeblock path= " /examples/kotlin/test/waits/WaitsTest.kt#L51-L60" >}}
177+
{{< gh-codeblock path= " examples/kotlin/src/test/kotlin/dev/selenium/waits/WaitsTest.kt#L51-L60" >}}
178178
{{< /tab >}}
179179
{{< /tabpane >}}
180180

0 commit comments

Comments
 (0)