如何通过Selenium Java初始化phantomjs浏览器



我正在尝试使用java中的phantomjsdriver来构建WebSpider。我正在使用Selenium版本3.11.0,Phantomjs 2.1.1和Phantomjsdriver版本1.2.1。当我执行代码时,我会收到以下错误消息。

线程" main" java.lang.nosuchmethoderror中的例外:org.openqa.selenium.os.commandline.find(ljava/lang/lang/string;(ljava/lang/lang/string;

package Masterarbeit.Crawler;
import java.io.File;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.phantomjs.PhantomJSDriver;
public class Test {
    public String Test(){
        File path=new File("/usr/local/bin/phantomjs");
        System.setProperty("phantomjs.binary.path",path.getAbsolutePath());
        WebDriver driver = new PhantomJSDriver(); 
        return "successful";
    }
}

我的操作系统是Linux Mint 18 Sarah,有人知道这样的原因吗?

直到几天前 phantomjsdriver selenium-server-server-standalone-v.v.v.v.v.v.v.v.v.v.v.jar 释放,所以我们能够解决方法 PhantomJSDriver() 通过 import org.openqa.selenium.phantomjs.PhantomJSDriver; selenium-server-standalone-x.y.z.jar

但现在, selenium-server-standalone-v.v.v.v.jar 不会将jar捆绑在 phantomjsdriver 依赖项中。因此,您必须从(com.codeborne:phantomjsdriver:jar:1.4.4(获得 phantomjsdriver 的版本,该版本似乎与最新的硒版本保持最新。

下载并添加 phantomjsdriver-1.4.4.4.4.4.jar 到您的 project

使用以下代码块并执行您的@Test

import java.io.File;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.phantomjs.PhantomJSDriver;
public class phantomJS_launch {
    public static void main(String[] args) {

          File path=new File("C:\Utility\phantomjs-2.1.1-windows\bin\phantomjs.exe");
          System.setProperty("phantomjs.binary.path",path.getAbsolutePath());
          WebDriver driver= new PhantomJSDriver();
          driver.get("https://www.google.co.in");
          System.out.println(driver.getTitle());
          driver.quit();
    }
}

重要 PhantomJSDriver() 仍然通过 import org.openqa.selenium.phantomjs.PhantomJSDriver;

解决

控制台输出:

Apr 25, 2018 9:24:16 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
INFO: executable: C:Utilityphantomjs-2.1.1-windowsbinphantomjs.exe
Apr 25, 2018 9:24:16 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
INFO: port: 25078
Apr 25, 2018 9:24:16 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
INFO: arguments: [--webdriver=25078, --webdriver-logfile=C:UsersAtechM_03LearnAutmationJava_PhantomJSphantomjsdriver.log]
Apr 25, 2018 9:24:16 PM org.openqa.selenium.phantomjs.PhantomJSDriverService <init>
INFO: environment: {}
[INFO  - 2018-04-25T15:54:19.809Z] GhostDriver - Main - running on port 25078
[INFO  - 2018-04-25T15:54:20.263Z] Session [ea9746f0-48a0-11e8-8b6b-f78193ae50b0] - page.settings - {"XSSAuditingEnabled":false,"javascriptCanCloseWindows":true,"javascriptCanOpenWindows":true,"javascriptEnabled":true,"loadImages":true,"localToRemoteUrlAccessEnabled":false,"userAgent":"Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/538.1 (KHTML, like Gecko) PhantomJS/2.1.1 Safari/538.1","webSecurityEnabled":true}
[INFO  - 2018-04-25T15:54:20.263Z] Session [ea9746f0-48a0-11e8-8b6b-f78193ae50b0] - page.customHeaders:  - {}
[INFO  - 2018-04-25T15:54:20.263Z] Session [ea9746f0-48a0-11e8-8b6b-f78193ae50b0] - Session.negotiatedCapabilities - {"browserName":"phantomjs","version":"2.1.1","driverName":"ghostdriver","driverVersion":"1.2.0","platform":"windows-8-32bit","javascriptEnabled":true,"takesScreenshot":true,"handlesAlerts":false,"databaseEnabled":false,"locationContextEnabled":false,"applicationCacheEnabled":false,"browserConnectionEnabled":false,"cssSelectorsEnabled":true,"webStorageEnabled":false,"rotatable":false,"acceptSslCerts":false,"nativeEvents":true,"proxy":{"proxyType":"direct"}}
[INFO  - 2018-04-25T15:54:20.264Z] SessionManagerReqHand - _postNewSessionCommand - New Session Created: ea9746f0-48a0-11e8-8b6b-f78193ae50b0
Apr 25, 2018 9:24:20 PM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: OSS
Google
[INFO  - 2018-04-25T15:54:22.023Z] ShutdownReqHand - _handle - About to shutdown

在这里,您可以在上找到一个详细的讨论>我如何从另一个具有相同结构的jar的课程来解决我的课程,例如另一个结构

最新更新