Selenium webdriver - 执行JS
作者:网络转载 发布时间:[ 2014/5/8 11:36:19 ] 推荐标签:Selenium 自动化测试工具 js代码
可以用来执行js代码,如下所示
该例子打开浏览器,并显示一个alert提示框
1 import org.openqa.selenium.JavascriptExecutor;
2 import org.openqa.selenium.WebDriver;
3 import org.openqa.selenium.firefox.FirefoxDriver;
4
5 public class JavaScript {
6
7 public static void main(String[] args) {
8 WebDriver driver = new FirefoxDriver();
9 // 执行js代码
10 // 1.将driver强制转换为JavascriptExecutor类型
11 // 2.调用executeScript方法
12 ((JavascriptExecutor)driver).executeScript("alert("hello,this is a alert!")");
13 }
14 }
|
也可以用JS获取网页中的信息,返回给selenium
该例子通过执行JS代码return document.title 获取网页的title,返回给selenium,并打印。(只是个例子- -#)
1 import org.openqa.selenium.WebDriver;
2 import org.openqa.selenium.firefox.FirefoxDriver;
3 import org.openqa.selenium.JavascriptExecutor;
4
5
6 public class JavaScript2 {
7
8 public static void main(String[] args) {
9 WebDriver driver = new FirefoxDriver();
10 driver.get("http://www.baidu.com/");
11 /*
12 * !!!这里注意!!!
13 * 该方法引用的是包org.openqa.selenium.JavascriptExecutor下的对象JavascriptExecutor
14 而不是com.gargoylesoftware.htmlunit.javascript.background.JavaScriptExecutor包下面的
15 JavaScriptExecutor对象
16 他们差别在Java后s的大小写
17 */
18 // 不是JavaScriptExecutor
19 JavascriptExecutor js = (JavascriptExecutor)driver;
20 // 通过js获取网页的title 注意有return
21 String title = (String) js.executeScript("return document.title");
22 System.out.println(title);
23 driver.close();
24 }
25 }
|
本文内容不用于商业目的,如涉及知识产权问题,请权利人联系SPASVO小编(021-61079698-8054),我们将立即处理,马上删除。
相关推荐
两种自动化测试工具AutoRunner与Selenium的对比关于Selenium自动化测试框架的较佳设计模式关于Selenium自动化测试框架那些你不知道的事哪种场景下,需要维护Selenium自动化测试过程?如何对Selenium自动化测试框架进行维护?Selenium自动化测试框架在自动化测试中发挥哪些作用?如何使用自动化测试框架ATF执行Selenium脚本?自动化测试脚本怎么写?如何使用Selenium录制浏览器的脚本?Selenium自动化测试框架软件好用吗?Selenium自动化测试框架ATF是如何根据数据生成用例的?多功能Selenium自动化测试框架软件ATFJava版本的Selenium异常记录第一个UI脚本-Python+Selenium实例:用Selenium和用Webdriver构建出来的测试工程如何放慢Selenium的运行速度Selenium FF WebDriver运行时开启firebug的2种方式
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11热门文章
常见的移动App Bug??崩溃的测试用例设计如何用Jmeter做压力测试QC使用说明APP压力测试入门教程移动app测试中的主要问题jenkins+testng+ant+webdriver持续集成测试使用JMeter进行HTTP负载测试Selenium 2.0 WebDriver 使用指南