您的位置:首页 > Web前端 > JavaScript

selenium webdriver学习(三)------------执行js脚本

2013-05-30 15:07 369 查看
在用selenium 1.X的时候常常会用到getEval()方法来执行一段js脚本来对页面进行处理,以处理一些遇到的问题。当然selenium webdriver也提供这样的一个方法:executeScript()

Java代码

import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;

public
class SimpleExample {

public
staticvoid main(String[] args) {

WebDriver driver =
new FirefoxDriver();

((JavascriptExecutor)driver).executeScript("alert(\"hello,this is a alert!\")");
}

}

import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;

public class  SimpleExample {

public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();

((JavascriptExecutor)driver).executeScript("alert(\"hello,this is a alert!\")");
}

}

上面是一个最简单的例子,打开一个浏览器,然后弹层一个alert框。注意这里的driver要被强制转换成JavascriptExecutor。

下面演示在打开51.com首页如何得到帐号输入框中显示的字符,并打印输出。

Java代码

import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;

public
class FirstExampe {

public
staticvoid main(String[] args) {

WebDriver driver =
new FirefoxDriver();
driver.get("http://www.51.com");
String js = "var user_input = document.getElementById(\"passport_51_user\").title;return user_input;";

String title = (String)((JavascriptExecutor)driver).executeScript( js);
System.out.println(title);

}

}

import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;

public class FirstExampe {

public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
driver.get("http://www.51.com");
String js = "var user_input = document.getElementById(\"passport_51_user\").title;return user_input;";

String title = (String)((JavascriptExecutor)driver).executeScript( js);
System.out.println(title);
}

}

输出结果为:

Java代码

用户名/彩虹号/邮箱
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: