Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am trying to launch Firefox driver by providing user profile from "C:UsersHPMEAppDataRoamingMozillaFirefoxProfiles" but getting the below exception:

org.openqa.selenium.TimeoutException: No connection could be made because the target machine actively refused it. (os error 10061)

The Firefox browser window is launched but unable to proceed further due to the exception thrown.

Below is the code snippet for what I have been trying to do:

FirefoxOptions firefoxOptions = new FirefoxOptions();
options.addArguments("-profile","Existing Profile Path");
webDriver = new FirefoxDriver(options); //exception is thrown at this line after browser window is launched

Please help in identifying what am I doing incorrect or any additional settings I am missing.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
4.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...