你如何在 Selenium 中在編輯框中輸入文字?
我們可以透過以下方法在 Selenium 中的編輯框中輸入文字 −
呼叫 sendkeys() 方法。
使用類 JavascriptExecutor。
使用 sendkeys() 方法的程式碼實現。
示例
import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent.TimeUnit; public class TextEnter { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe"); WebDriver driver = new ChromeDriver(); String url = "https://tutorialspoint.tw/index.htm"; driver.get(url); driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS); driver.findElement(By.className("gsc-input")) .sendKeys("Selenium"); driver.close(); } }
使用類 JavascriptExecutor 方法的程式碼實現。
示例
import org.openqa.selenium.By; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent.TimeUnit; import org.openqa.selenium.JavascriptExecutor; public class EnterScripting { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\Users\ghs6kor\Desktop\Java\chromedriver.exe"); WebDriver driver = new ChromeDriver(); String url = "https://tutorialspoint.tw/index.htm" driver.get(url); driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS); // Create Javascript object JavascriptExecutor js = (JavascriptExecutor)driver; // Issue command to enter the text js.executeScript("document.getElementById('gsc-i-id1').value = 'Selenium';"); driver.close(); } }
廣告