• 2.10 webdriver中 js 使用


    来源: 使用Webdriver执行JS小结  http://lijingshou.iteye.com/blog/2018929  

    selenium常用的js总结  http://www.cnblogs.com/tobecrazy/p/4817946.html 

    1.直接传入Javascript代码

    可以直接给js传入javascript代码:

    Java代码  收藏代码
    1. js.executeScript("window.document.getElementById('jingshou').click()";  

    2.传入WebElement执行JS:

    Java代码  收藏代码
    1. WebElement element = driver.findElement(By.id("jingshou"));  
    2. js.executeScript("arguments[0].click();", element);  

    又或者:

    Java代码  收藏代码
    1. js.executeScript("arguments[0].onclick=function(){alert('This is my alert!');}", element)  

    其中auguments[0]就代表element, 甚至我们可以传入更多的参数,比如

    Java代码  收藏代码
    1. WebElement div = driver.findElemnt(By.id("myDiv"));  
    2. jse.executeScript("arguments[0].setAttribute('style', arguments[1])", div, "height: 1000px");  

     通过执行以上代码,我们指定的DIV就新增(修改)了 style {height: 1000px}的属性

    ex.  使用JavaScript语句将传入参数(页面元素对象)的背景颜色和边框颜色分别设置为 黄色、红色

    JavascriptExecutor js=(JavascriptExecutor)  driver;
    js.executeScript("arguments[0].setAttribute('style',arguments[1]);", element,"background: yellow; border:2px solid red;");
    
  • 相关阅读:
    团队作业第五次——冲刺任务与计划
    2020-04-29 冲刺第一天
    OO Unit 2 Summary
    OO Unit 1 Summary
    团队项目-选题报告
    第一次结对编程作业
    第一次个人编程作业
    软件工程第一次作业
    软件工程2019第一次作业
    α阶段第九次会议
  • 原文地址:https://www.cnblogs.com/ericazy/p/6952422.html
Copyright © 2020-2023  润新知