编程语言
首页 > 编程语言> > java – 为什么我在Selenium中将“类型被弃用”视为错误?

java – 为什么我在Selenium中将“类型被弃用”视为错误?

作者:互联网

我正在使用eclipse-jee-luna-SR1-win32-x86_64用于Selenium(Selenium版本是selenium-standalone-2.44.0和selenium-java-2.44.0).我收到错误该类型已被弃用.我的系统上安装了JavaSE-1.8.

> java -version
java version "1.8.0_25"
Java(TM) SE Runtime Environment (build 1.8.0_25-b18)
Java HotSpot(TM) 64-Bit Server VM (build 25.25-b02, mixed mode)

这是我正在使用的代码:

import com.thoughtworks.selenium.DefaultSelenium; 
import com.thoughtworks.selenium.Selenium;
public class FirstTestCase {
    public static void main(String[] args) {
        System.out.println("Hello World");
        Selenium selenium = new DefaultSelenium("localhost", 5555, "chrome", "http://www.xxxxxxyxyxyx.com");
        }
}

解决方法:

Selenium接口和DefaultSelenium类都属于Selenium 1并且已弃用. Selenium已推进到Selenium 2(WebDriver),因此显示这些警告消息以鼓励用户停止使用旧的Selenium 1代码并开始使用Selenium 2(WebDriver)代码.

添加:这与您的IDE(Eclipse)或Java版本无关.

您将需要使用以下类,因为它们是Selenium 2(WebDriver)的一部分. WebDriver是各种Selenium 2驱动程序使用的接口.

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

然后你有各种各样的驱动程序,你可以使用. RemoteWebDriver / HtmlUnitDriver / FireFoxDriver / ChromeDriver / IEDriverServer等.您将要在Java类中导入驱动程序.

Selenium selenium = new DefaultSelenium();

WebDriver driver = new TheSpecificDriver();

标签:java,selenium,selenium-rc
来源: https://codeday.me/bug/20190528/1171864.html