From baac111fc01686388a269679a3aa7a55748b8a8a Mon Sep 17 00:00:00 2001 From: Noritaka Kobayashi Date: Tue, 13 May 2025 01:27:35 +0900 Subject: [PATCH] refactor: remove unused imports from action tests --- examples/kotlin/src/test/kotlin/dev/selenium/BaseTest.kt | 1 - .../src/test/kotlin/dev/selenium/actions_api/ActionsTest.kt | 1 - .../kotlin/src/test/kotlin/dev/selenium/actions_api/KeysTest.kt | 1 - .../src/test/kotlin/dev/selenium/actions_api/MouseTest.kt | 2 -- .../kotlin/src/test/kotlin/dev/selenium/actions_api/PenTest.kt | 1 - 5 files changed, 6 deletions(-) diff --git a/examples/kotlin/src/test/kotlin/dev/selenium/BaseTest.kt b/examples/kotlin/src/test/kotlin/dev/selenium/BaseTest.kt index dfe1bcef70a5..feea0654aade 100644 --- a/examples/kotlin/src/test/kotlin/dev/selenium/BaseTest.kt +++ b/examples/kotlin/src/test/kotlin/dev/selenium/BaseTest.kt @@ -1,7 +1,6 @@ package dev.selenium; import org.junit.jupiter.api.AfterEach; -import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; diff --git a/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/ActionsTest.kt b/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/ActionsTest.kt index 435b006a5ffa..8ac7972e5af0 100644 --- a/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/ActionsTest.kt +++ b/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/ActionsTest.kt @@ -5,7 +5,6 @@ import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test import org.openqa.selenium.By import org.openqa.selenium.Keys -import org.openqa.selenium.WebElement import org.openqa.selenium.interactions.Actions import org.openqa.selenium.remote.RemoteWebDriver diff --git a/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/KeysTest.kt b/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/KeysTest.kt index ebc0c5046d77..519e29215141 100644 --- a/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/KeysTest.kt +++ b/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/KeysTest.kt @@ -7,7 +7,6 @@ import org.openqa.selenium.By import org.openqa.selenium.HasCapabilities import org.openqa.selenium.Keys import org.openqa.selenium.Platform -import org.openqa.selenium.WebElement import org.openqa.selenium.interactions.Actions class KeysTest : BaseTest() { diff --git a/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/MouseTest.kt b/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/MouseTest.kt index 03887f71d769..36c929335712 100644 --- a/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/MouseTest.kt +++ b/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/MouseTest.kt @@ -4,8 +4,6 @@ import dev.selenium.BaseTest import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test import org.openqa.selenium.By -import org.openqa.selenium.Rectangle -import org.openqa.selenium.WebElement import org.openqa.selenium.interactions.Actions import org.openqa.selenium.interactions.PointerInput import org.openqa.selenium.interactions.Sequence diff --git a/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/PenTest.kt b/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/PenTest.kt index 00278b62b3d5..4b537d19768d 100644 --- a/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/PenTest.kt +++ b/examples/kotlin/src/test/kotlin/dev/selenium/actions_api/PenTest.kt @@ -4,7 +4,6 @@ import dev.selenium.BaseTest import org.junit.jupiter.api.Assertions import org.junit.jupiter.api.Test import org.openqa.selenium.By -import org.openqa.selenium.Rectangle import org.openqa.selenium.WebElement import org.openqa.selenium.interactions.Actions import org.openqa.selenium.interactions.PointerInput