您的位置:首页 > 编程语言 > Java开发

selenium测试(Java)--执行JS(十八)

2016-07-16 18:44 597 查看
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
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: