5.6 WebDriver API实例讲解(31-35)】的更多相关文章

本节主要详细描述WebDriver的常用API使用方法. 1.访问某网页地址 被测试网页的网址:http://www.sogou.com. Java语言版本的API实例代码: 方法1: public static void visitURL(){ String baseUrl="http://www.sogou.com"; driver.get(baseUrl); } 方法2: public static void visitURL(){ String baseUrl="ht…
16.操作单选框 被测试的网页为Demo1. Java语言版本的API实例代码: public static void operateRadio(){ driver.get("file:///D:/%E6%95%99%E5%AD%A6/2015-2016-2/%E8%AF%BE%E4%BB%B6/w9/SeleniumDemo/files/Demo1/demo.html"); driver.manage().window().maximize(); WebElement radioOp…
31.判断页面元素是否存在 public static void testElementExist(){ driver.get("http://www.sogou.com"); try{ driver.findElement(By.id("query")); System.out.println("element is found."); }catch(NoSuchElementException e){ System.out.println(&…
31.判断页面元素是否存在 public static void testElementExist(){ driver.get("http://www.sogou.com"); try{ driver.findElement(By.id("query")); System.out.println("element is found."); }catch(NoSuchElementException e){ System.out.println(&…
41.操作Web页面的滚动条 (1)滑动页面的滚动条到页面的最下面. (2)滑动页面的滚动条到页面的某个元素. (3)滑动页面的滚动条向下移动某个数量的像素. package apiSample; import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebEleme…
三十一.使用页面的文字内容识别和处理新弹出的浏览器窗口 被测试网页的HTML源码: <html> <head> <meta charset="UTF-8" content="text/html"> <title>你喜欢的水果</title> </head> <body> <p id="p1">你爱吃的水果么?</p> <br>&…
二十一.模拟鼠标右键事件 被测试网页的网址: http://www.sogou.com Java语言版本的API实例代码: package test; import org.testng.annotations.Test; import org.testng.annotations.BeforeMethod; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.seleniu…
十一.双击某个元素 被测试网页的html源码: <html> <head> <meta charset="UTF-8"> </head> <body> <input type="text" id="inputBox" ondblclick="javascript:this.style.background='red'">请双击</input>…
一.访问某网页地址 被测试网页的网址: http://www.baidu.com Java语言版本的API实例代码: 方法1: package test; import org.testng.annotations.Test; import org.testng.annotations.BeforeMethod; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import…
2.1 操作元素基本方法 前言前面已经把环境搭建好了,从这篇开始,正式学习selenium的webdriver框架.我们平常说的 selenium自动化,其实它并不是类似于QTP之类的有GUI界面的可视化工具,我们要学的是webdriver框架的API.本篇主要讲如何用Python调用webdriver框架的API,对浏览器做一些常规的操作,如打开.前进.后退.刷新.设置窗口大小.截屏.退出等操作. 2.1.1 打开网页 1.从selenium里面导入webdriver模块2.打开Firefox…