0
votes

Error:

org.openqa.selenium.TimeoutException: connection refused Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:48' System info: host: 'ubuntu', ip: '127.0.0.1', os.name: 'Linux', os.arch: 'amd64', os.version: '4.15.0-112-generic', java.version: '1.8.0_252' Driver info: driver.version: FirefoxDriver

Code:

System.setProperty("webdriver.gecko.driver", "/usr/bin/geckodriver");
FirefoxOptions firefoxOptions = new FirefoxOptions();
firefoxOptions.setHeadless(true);

java.util.logging.Logger.getLogger("org.openqa.selenium").setLevel(Level.OFF);
System.out.println(1);

WebDriver driver = new FirefoxDriver(firefoxOptions);
// code does not reach this point. Look like its freezing at the initialisation of 'driver'.
try (AutoCloseable autoCloseable = () -> driver.close()) {
         ...

I have changed Java Version as another question recommended (from 11 to 8).

EDIT: That post (Java Selenium Webdriver Connection Refused) did not work.

EDIT #2: I am running it through Tomcat 9.

1

1 Answers

0
votes

I don't see any such issue with your code block. I took your code and executed with the following configuration:


Execution details

Here are the execution details using :

  • Code Block:

    import java.util.logging.Level;
    
    import org.openqa.selenium.firefox.FirefoxDriver;
    //import org.openqa.selenium.firefox.FirefoxDriverLogLevel;
    import org.openqa.selenium.firefox.FirefoxOptions;
    
    public class AutoCloseableSelenium {
    
        public static void main(String[] args) throws Exception {
    
            System.setProperty("webdriver.gecko.driver","C:\\WebDrivers\\geckodriver.exe");
            FirefoxOptions options = new FirefoxOptions();
            options.setHeadless(true);
            //options.setLogLevel(FirefoxDriverLogLevel.TRACE);
            java.util.logging.Logger.getLogger("org.openqa.selenium").setLevel(Level.OFF);
            System.out.println(1);
            FirefoxDriver driver = new FirefoxDriver(options);
            try (AutoCloseable autoCloseable = () -> driver.quit()) { }
            System.out.println("Exiting program");
      }
    

    }

  • Console Output:

    1
    1595977246813 mozrunner::runner   INFO    Running command: "C:\\Program Files\\Mozilla Firefox\\firefox.exe" "-marionette" "-headless" "-foreground" "-no-remote" "-profile" "C:\\Users\\SOMABH~1\\AppData\\Local\\Temp\\rust_mozprofile345iC4"
    *** You are running in headless mode.
    JavaScript error: resource://gre/modules/XULStore.jsm, line 66: Error: Can't find profile directory.
    console.error: SearchCache: "_readCacheFile: Error reading cache file:" (new Error("", "(unknown module)"))
    1595977254325 Marionette  INFO    Listening on port 53331
    1595977254676 Marionette  WARN    TLS certificate errors will be ignored for this session
    1595977254896 Marionette  INFO    Stopped listening on port 53331
    JavaScript error: resource://activity-stream/lib/ActivityStreamPrefs.jsm, line 27: NS_ERROR_ILLEGAL_VALUE: Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIPrefBranch.removeObserver]
    console.warn: services.settings: main/messaging-experiments sync interrupted by shutdown
    JavaScript error: resource://services-settings/IDBHelpers.jsm, line 24: Error: IndexedDB: main/fxmonitor-breaches list() IndexedDB:  execute() The application is shutting down
    JavaScript error: resource://gre/modules/Sqlite.jsm, line 928: Error: Connection is not open.
    Exiting program