版本
1.Selenium 版本3.6
2.Java 版本1.8
可能遇到的问题:
1.在更换java 版本的时候要注意查看 Java 的版本信息,可能由于 Java 未删除>干净,Java 和 Javac 的版本不一致,会导致编译失败 。提示BFS.manage的>exception。
2.在安装jdk成功后,导入已有的工程,运行的时候要有 Error: A JNI error >has >occurred .要注意JRE System Library 路径的配置…build path >->Libraries->Add Library ->JRE System Library->在Workspace default 和 >Execution environment 中切换一下。
package Frame;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
public class Frame {
public static void main(String [] args) {
System.setProperty("webdriver.id.driver", "E:\\workspace\\selenium\\new\\IEDriverServer.exe");
WebDriver driver = new InternetExplorerDriver();
driver.get("https://www.w3school.com.cn");
driver.quit();
}
}