我们可以使用Selenium向下滚动。Selenium无法直接处理滚动操作,它需要借助Javascript Executor来执行滚动操作,直到滚动到指定元素。
首先,我们需要定位到要滚动到的元素。接下来,我们将使用Javascript Executor来运行Javascript命令。在Selenium中,使用executeScript方法来运行Javascript命令。我们将借助Javascript中的scrollIntoView方法,并将true作为参数传递给该方法。
WebElement elm = driver.findElement(By.name("name")); ((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView(true);",elm);
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 ScrollAction{ 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(4, TimeUnit.SECONDS); // identify element WebElement n=driver.findElement(By.xpath("//*[text()='Contact']")); // Javascript executor ((JavascriptExecutor)driver).executeScript("arguments[0].scrollIntoView (true);", n); } }
以上是如何使用Java中的Selenium WebDriver向下滚动?的详细内容。更多信息请关注PHP中文网其他相关文章!