Skip to content

Commit 584cc1c

Browse files
Incorrect Hugo syntax fixed, for driver.quit() (#2003)[deploy site]
In Quitting session section, on drivers page, due to incorrect hugo syntax the driver.quit() was not being displayed for Java, Dotnet, JS and Kotlin. Fixed this issue, made the changes in all the supported language files, local verification done after the fixes. Fixes #2002 Co-authored-by: Sri Harsha <12621691+harsha509@users.noreply.github.com>
1 parent 8992e9c commit 584cc1c

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,21 +62,21 @@ and it is recommended to always use `quit` to end the session
6262

6363
{{< tabpane text=true >}}
6464
{{< tab header="Java" >}}
65-
{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}
65+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}}
6666
{{< /tab >}}
6767
{{% tab header="Python" %}}
6868
{{< gh-codeblock path="examples/python/tests/drivers/test_options.py#L13" >}}
6969
{{% /tab %}}
7070
{{< tab header="CSharp" >}}
71-
{< gh-codeblock path="examples/dotnet/HelloSelenium.cs#L13" >}
71+
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L28" >}}
7272
{{< /tab >}}
7373
{{< tab header="Ruby" >}}
7474
{{< gh-codeblock path="examples/ruby/spec/drivers/options_spec.rb#L16" >}}
7575
{{< /tab >}}
7676
{{< tab header="JavaScript" >}}
77-
{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L28" >}
77+
{{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L28" >}}
7878
{{< /tab >}}
7979
{{< tab header="Kotlin" >}}
80-
{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L35" >}
80+
{{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L35" >}}
8181
{{< /tab >}}
8282
{{< /tabpane >}}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,21 @@ weight: 3
5959

6060
{{< tabpane text=true >}}
6161
{{< tab header="Java" >}}
62-
{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}
62+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}}
6363
{{< /tab >}}
6464
{{% tab header="Python" %}}
6565
{{< gh-codeblock path="examples/python/tests/drivers/test_options.py#L13" >}}
6666
{{% /tab %}}
6767
{{< tab header="CSharp" >}}
68-
{< gh-codeblock path="examples/dotnet/HelloSelenium.cs#L13" >}
68+
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L28" >}}
6969
{{< /tab >}}
7070
{{< tab header="Ruby" >}}
7171
{{< gh-codeblock path="examples/ruby/spec/drivers/options_spec.rb#L16" >}}
7272
{{< /tab >}}
7373
{{< tab header="JavaScript" >}}
74-
{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L28" >}
74+
{{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L28" >}}
7575
{{< /tab >}}
7676
{{< tab header="Kotlin" >}}
77-
{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L35" >}
77+
{{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L35" >}}
7878
{{< /tab >}}
7979
{{< /tabpane >}}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,21 +62,21 @@ and it is recommended to always use `quit` to end the session
6262

6363
{{< tabpane text=true >}}
6464
{{< tab header="Java" >}}
65-
{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}
65+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}}
6666
{{< /tab >}}
6767
{{% tab header="Python" %}}
6868
{{< gh-codeblock path="examples/python/tests/drivers/test_options.py#L13" >}}
6969
{{% /tab %}}
7070
{{< tab header="CSharp" >}}
71-
{< gh-codeblock path="examples/dotnet/HelloSelenium.cs#L13" >}
71+
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L28" >}}
7272
{{< /tab >}}
7373
{{< tab header="Ruby" >}}
7474
{{< gh-codeblock path="examples/ruby/spec/drivers/options_spec.rb#L16" >}}
7575
{{< /tab >}}
7676
{{< tab header="JavaScript" >}}
77-
{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L28" >}
77+
{{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L28" >}}
7878
{{< /tab >}}
7979
{{< tab header="Kotlin" >}}
80-
{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L35" >}
80+
{{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L35" >}}
8181
{{< /tab >}}
8282
{{< /tabpane >}}

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,21 @@ weight: 3
6060

6161
{{< tabpane text=true >}}
6262
{{< tab header="Java" >}}
63-
{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}
63+
{{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L29" >}}
6464
{{< /tab >}}
6565
{{% tab header="Python" %}}
6666
{{< gh-codeblock path="examples/python/tests/drivers/test_options.py#L13" >}}
6767
{{% /tab %}}
6868
{{< tab header="CSharp" >}}
69-
{< gh-codeblock path="examples/dotnet/HelloSelenium.cs#L13" >}
69+
{{< gh-codeblock path="examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L28" >}}
7070
{{< /tab >}}
7171
{{< tab header="Ruby" >}}
7272
{{< gh-codeblock path="examples/ruby/spec/drivers/options_spec.rb#L16" >}}
7373
{{< /tab >}}
7474
{{< tab header="JavaScript" >}}
75-
{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L28" >}
75+
{{< gh-codeblock path="examples/javascript/test/getting_started/firstScript.spec.js#L28" >}}
7676
{{< /tab >}}
7777
{{< tab header="Kotlin" >}}
78-
{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L35" >}
78+
{{< gh-codeblock path="examples/kotlin/src/test/kotlin/dev/selenium/getting_started/FirstScriptTest.kt#L35" >}}
7979
{{< /tab >}}
8080
{{< /tabpane >}}

0 commit comments

Comments
 (0)