Selenium webdriver로 자바스크립트 변수를 읽을 수 있습니다. Selenium은 executeScript 의 도움으로 자바스크립트 명령을 실행할 수 있습니다. 방법. 실행할 Javascript 명령은 메소드에 인수로 전달됩니다. 또한 import org.openqa.selenium.JavascriptExecutor 문을 추가해야 합니다. 자바스크립트와 함께 작동합니다.
구문
JavascriptExecutor j = (JavascriptExecutor) driver; j.executeScript("return document.title")
자바스크립트 변수에서 값을 읽어서 아래 페이지의 브라우저 제목을 알아봅시다. 출력은 About Careers at Tutorials Point – Tutorialspoint여야 합니다.
예시
코드 구현
import org.openqa.selenium.By; 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 JavascriptReadValue{ public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "C:\\Users\\ghs6kor\\Desktop\\Java\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.get("https://www.tutorialspoint.com/about/about_careers.htm") driver.manage().timeouts().implicitlyWait(12, TimeUnit.SECONDS); // Javascript executor to read value JavascriptExecutor j = (JavascriptExecutor) driver; // get the browser title with document.title String t = (String)j.executeScript("return document.title"); System.out.print("Current page title: " +t); driver.close(); } }
출력