org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms

后端 未结 7 2426
情歌与酒
情歌与酒 2020-12-18 18:53

I\'m trying to run a Junit Test case which i exported from Selenium IDE. Im getting above exception.I\'m using Windows XP,Firefox 20.0.1,and using selenium-server-standalone

相关标签:
7条回答
  • 2020-12-18 19:16

    None of the mention solutions worked for me. What worked for me is to use latest Firefox (currently 32.0.2) and latest selenium

        <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.43.1</version>
        </dependency>
    

    Version 2.43.1 worked, 2.42.1 did not.

    0 讨论(0)
提交回复
热议问题