selenium打开ie测试小实例

发布时间:2020-06-21 04:27:56 作者:读山行
来源:网络 阅读:956

package mqTest;


import java.io.File;


import org.openqa.selenium.By;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.WebElement;

import org.openqa.selenium.firefox.FirefoxDriver;

import org.openqa.selenium.ie.InternetExplorerDriver;

import org.openqa.selenium.remote.DesiredCapabilities;


public class testSelenium1 {


public testSelenium1() {

// TODO Auto-generated constructor stub

}


public static void main(String[] args) {

// TODO Auto-generated method stub


//WebDriver driver=new FirefoxDriver();

File file = new File("F:/IEDriverServer.exe");  

System.setProperty("webdriver.ie.driver", file.getAbsolutePath()); 

DesiredCapabilities ieCapabilities = DesiredCapabilities.internetExplorer();

ieCapabilities.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS,true);

WebDriver driver=new InternetExplorerDriver(ieCapabilities);

driver.get("https://www.baidu.com");

//WebElement loginLink=driver.findElement(By.partialLinkText("登"));

//loginLink.click();

/*页面代码

* <input id="kw" name="wd" class="s_ipt" value="" maxlength="255" autocomplete="off"></span><span class="bg s_btn_wr"><input type="submit" id="su" value="百度一下" class="bg s_btn">

*/

//用id

WebElement baiduTextBox = driver.findElement(By.id("kw"));

baiduTextBox.sendKeys("selenium");

WebElement button=driver.findElement(By.id("su"));

button.click();

}


}


推荐阅读:
  1. selenium自动化测试之测试结果验证
  2. selenium调用IE浏览器报错

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

selenium sel

上一篇:nagios安装及监控

下一篇:意法半导体固件库stdperiph_lib v3.5 配置工程MDK模板

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》