悠悠小仙仙 发表于 2017-7-18 10:54:13

Selenium Webdriver学习 03 – 执行js脚本

在用selenium 1.X的时候常常会用到getEval()方法来执行一段js脚本来对页面进行处理,以处理一些遇到的问题。当然selenium webdriver也提供这样的一个方法:executeScript()
CODE:
<font size="4">import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;

public classSimpleExample {

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

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

}</font>CODE:
<font size="4">import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
   
public classSimpleExample {
   
      
    public static void main(String[] args) {
      WebDriver driver = new FirefoxDriver();
   
          ((JavascriptExecutor)driver).executeScript("alert(\"hello,this is a alert!\")");
    }
   
}</font>上面是一个最简单的例子,打开一个浏览器,然后弹层一个alert框。注意这里的driver要被强制转换成JavascriptExecutor。
下面演示在打开51.com首页如何得到帐号输入框中显示的字符,并打印输出。
CODE:
<font size="4">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);
    }

}</font>CODE:
<font size="4">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);
    }
   
}</font>输出结果为:
CODE:
<font size="4">用户名/彩虹号/邮箱</font>

八戒你干嘛 发表于 2017-7-18 15:07:58

:handshake

梦想家 发表于 2018-5-14 17:55:01

:victory:

木头人丶 发表于 2018-7-4 15:36:58

本帖最后由 木头人丶 于 2018-7-4 16:09 编辑

请问用JS的方式,跟findElementById后获取title的方式,有什么区别?也就是下面说的这2种方式
         browser.openUrl("http://bbs.51testing.com/thread-1134651-1-1.html");
方式一:
         String js = "var user_input = document.getElementById(\"newspecial\").title;return user_input;";
         String title = (String)((JavascriptExecutor)browser.getDriver()).executeScript(js);
         System.out.println(title);
方式二:
      String title2 = browser.getDriver().findElement(By.id("newspecial")).getAttribute("title");
      System.out.println(title2);


输出的内容都是【发新帖】

48luowei 发表于 2018-11-18 17:15:08

多谢楼主
页: [1]
查看完整版本: Selenium Webdriver学习 03 – 执行js脚本