一、用selenium IDE导出列子的顺序:
点击录制按钮,最后导出的时候,用java/JUnit/webDriver
二、如何用eclipse创建一个工程:
new–java project–填好name,选好JRE–next–选好libraiesi–add external JARS–finish()
三、自己编程的情况:
1.例子,如何打开一个浏览器,输入网址ww.baidu.com
前提:jar包导入了+驱动导入了。
package info.cloud.webdriver;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriver.Navigation;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
public class day2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
//System.setProperties(props);
/*
WebDriver driver = new FirefoxDriver();//新建一个浏览器
Navigation navigation = driver.navigate();//新建一个导航
navigation.to("http://www.baidu.com");//导航到百度
driver.close();//关闭浏览器
driver=null;//driver是个对像,所以要置空
*/
myie();
}
public static void myfirefox()
{
WebDriver driver = new FirefoxDriver();
Navigation navigation = driver.navigate();
navigation.to("http://www.baidu.com");
driver.close();
driver = null;
}
public static void mychrome()
{
System.setProperty("webdriver.chrome.driver", "files/chromedriver.exe");
WebDriver driver = new ChromeDriver();
Navigation navigation = driver.navigate();
navigation.to("http://www.baidu.com");
driver.close();
driver = null;
}
public static void myie()
{
System.setProperty("webdriver.ie.driver", "files/IEDriverServer.exe");
WebDriver driver = new InternetExplorerDriver();
Navigation navigation = driver.navigate();
navigation.to("https://www.baidu.com");
driver.close();
driver = null;
}
}
2.现在程序打开的浏览器都是没有任何插件的,有些时候需要用到firebug, firepath等插件,所以接下来接下来就是用程序给浏览器装插件。
//装了插件的firefox,chrome装插件的方法类似,IE是没有插件的。
public static void myfirefoxplug()
{
File file = new File("files/firebug-1.8.1.xpi");//把插件读进来
FirefoxProfile firefoxProfile = new FirefoxProfile();
try{
firefoxProfile.addExtension(file);//把这个插件装上
}catch(IOException e) //容错处理
{
e.printStackTrace();
}
//下面配置一下版本号,这里是在firefox中输入about:config然后就可以看到一对对属性和属性值了
firefoxProfile.setPreference("extensions.firebug.currentVersion","1.8.1");
WebDriver driver = new FirefoxDriver(firefoxProfile);//在启动firefoxver的时候,加载profile.
Navigation navigation = driver.navigate();
navigation.to("http://www.baidu.com");
//driver.close();
//driver = null;myfirefoxdefault
}
3.还有一种配置的方法:就是先手动在浏览器中配好,然后程序中采用默认配置,这样的话,就会少掉很多代码,简单一些。但该有的插件还有的。————启动的是本机firefox配置
//起来的是默认配置的firefox,包含了各种额外的插件
public static void myfirefoxdefault()
{
ProfilesIni allProfiles=new ProfilesIni();
FirefoxProfile profile=allProfiles.getProfile("default");//所有配置初始化
WebDriver driver = new FirefoxDriver(profile);//在启动firefoxver的时候,加载profile.
Navigation navigation = driver.navigate();
navigation.to("http://www.baidu.com");
//driver.close();
//driver = null;
}