selenium測試(Java)--執行JS(十八)

來源:互聯網
上載者:User

標籤:exec   捲軸   file   import   public   sleep   todo   scrollto   ntb   

1.  操作捲軸

package com.test.js;import org.openqa.selenium.By;import org.openqa.selenium.Dimension;import org.openqa.selenium.JavascriptExecutor;import org.openqa.selenium.WebDriver;import org.openqa.selenium.firefox.FirefoxDriver;public class WindowScroll {    public static void main(String[] args) {        WebDriver driver = new FirefoxDriver();        driver.get("http://www.baidu.com");        driver.manage().window().setSize(new Dimension(600, 600));        waitTime(3000);        driver.findElement(By.cssSelector("#kw")).sendKeys("selenium");        driver.findElement(By.cssSelector("#su")).click();        waitTime(3000);        String js = "window.scrollTo(100,450);";        ((JavascriptExecutor) driver).executeScript(js);        waitTime(5000);        driver.quit();    }    static public void waitTime(int time) {        try {            Thread.sleep(time);        } catch (InterruptedException e) {            // TODO Auto-generated catch block            e.printStackTrace();        }    }}

2.在textarea中輸入內容

package com.test.js;import org.openqa.selenium.By;import org.openqa.selenium.JavascriptExecutor;import org.openqa.selenium.WebDriver;import org.openqa.selenium.firefox.FirefoxDriver;public class TextareaInput {    public static void main(String[] args) {        WebDriver driver = new FirefoxDriver();        driver.get("file:///D:/10-selenium/workspace/SeleniumTest/src/com/test/js/textarea.html");        driver.manage().window().maximize();        driver.findElement(By.cssSelector("#id")).sendKeys("input text----");        // 利用JS來輸入內容        waitTime(5000);        String text = "input by js";        String js = "var sum = document.getElementById(‘id‘); sum.value=‘" + text + "‘;";        System.out.println(js);        ((JavascriptExecutor) driver).executeScript(js);    }    static public void waitTime(int time) {        try {            Thread.sleep(time);        } catch (InterruptedException e) {            // TODO Auto-generated catch block            e.printStackTrace();        }    }}

參考:

http://www.cnblogs.com/tobecrazy/p/4817946.html

selenium測試(Java)--執行JS(十八)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.