首页 > 代码库 > 使用Webdriver执行JS小结
使用Webdriver执行JS小结
首先,我们使用如下方式初始化driver:
Java代码
- WebDriver driver = new FirefoxDriver();
- JavascriptExecutor jse = (JavascriptExecutor)driver;
1.直接传入Javascript代码
可以直接给jse传入javascript代码:
Java代码
- jse.executeScript("window.document.getElementById(‘jingshou‘).click()";
2.传入WebElement执行JS:
Java代码
- WebElement element = driver.findElement(By.id("jingshou"));
- jse.executeScript("arguments[0].click();", element);
又或者:
Java代码
- jse.executeScript("arguments[0].onclick=function(){alert(‘This is my alert!‘);}", element)
其中auguments[0]就代表element, 甚至我们可以传入更多的参数,比如
Java代码
- WebElement div = driver.findElemnt(By.id("myDiv"));
- jse.executeScript("arguments[0].setAttribute(‘style‘, arguments[1])", div, "height: 1000px");
通过执行以上代码,我们指定的DIV就新增(修改)了 style {height: 1000px}的属性
本文出自"lijingshou"博客,转载请务必保留此出处http://lijingshou.iteye.com/blog/2018929
使用Webdriver执行JS小结
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。