From 95abcd3cb169ec3b2effe509b1ab536c50422e22 Mon Sep 17 00:00:00 2001 From: Darren Chen <44618879+darrenqchen@users.noreply.github.com> Date: Sun, 23 Jun 2024 23:30:10 -0400 Subject: [PATCH] Update first_script.en.md In step 7 for Python, the code block is missing line 18 which creates the message variable. This way people that are following along the `"getting_started"` tutorial won't be as confused. --- .../documentation/webdriver/getting_started/first_script.en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website_and_docs/content/documentation/webdriver/getting_started/first_script.en.md b/website_and_docs/content/documentation/webdriver/getting_started/first_script.en.md index b7124efb122d..60e00a27f624 100644 --- a/website_and_docs/content/documentation/webdriver/getting_started/first_script.en.md +++ b/website_and_docs/content/documentation/webdriver/getting_started/first_script.en.md @@ -183,7 +183,7 @@ Elements store a lot of [information that can be requested]({{< ref "/documentat {{< gh-codeblock path="examples/java/src/test/java/dev/selenium/getting_started/FirstScript.java#L27" >}} {{< /tab >}} {{< tab header="Python" >}} -{{< gh-codeblock path="examples/python/tests/getting_started/first_script.py#L19" >}} +{{< gh-codeblock path="examples/python/tests/getting_started/first_script.py#L18-19" >}} {{< /tab >}} {{< tab header="CSharp" >}} {{< gh-codeblock path="examples/dotnet/SeleniumDocs/GettingStarted/FirstScript.cs#L26" >}}