Skip to content

Commit b6426b3

Browse files
committed
add missing import, fixes SeleniumHQ#922
1 parent 711b749 commit b6426b3

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

website_and_docs/content/documentation/webdriver/getting_started/first_script.en.md

+1
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ with a test runner instead of a standalone file.
246246
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
247247
import org.openqa.selenium.By;
248248
import org.openqa.selenium.WebDriver;
249+
import org.openqa.selenium.WebElement;
249250
import org.openqa.selenium.chrome.ChromeDriver;
250251

251252
public class HelloSelenium {

website_and_docs/content/documentation/webdriver/getting_started/first_script.pt-br.md

+1
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ with a test runner instead of a standalone file.
247247
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
248248
import org.openqa.selenium.By;
249249
import org.openqa.selenium.WebDriver;
250+
import org.openqa.selenium.WebElement;
250251
import org.openqa.selenium.chrome.ChromeDriver;
251252

252253
public class HelloSelenium {

website_and_docs/content/documentation/webdriver/getting_started/first_script.zh-cn.md

+1
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ with a test runner instead of a standalone file.
251251
{{< tab header="Java" github="SeleniumHQ/seleniumhq.github.io/blob/java_example/examples/java/src/test/java/dev/selenium/getting_started/FirstScriptTest.java" >}}
252252
import org.openqa.selenium.By;
253253
import org.openqa.selenium.WebDriver;
254+
import org.openqa.selenium.WebElement;
254255
import org.openqa.selenium.chrome.ChromeDriver;
255256

256257
public class HelloSelenium {

0 commit comments

Comments
 (0)