On 11/24/2016 10:49 AM, Moises Siles wrote:
> Hi,
>
> are you using geckodriver?
>
> I think you should use something like
>
> System.setProperty("webdriver.firefox.marionette","G:\\Selenium\\Firefox
>
>
driver\\geckodriver.exe");
>
> // if above property is not working or not opening the application in
> browser then try below property
>
> //System.setProperty("webdriver.gecko.driver","G:\\Selenium\\Firefox
> driver\\geckodriver.exe");
>
> WebDriver driver = new FirefoxDriver();
>
>
>
http://learn-automation.com/use-firefox-selenium-using-geckodriver-selenium-3/
Hi Moises,
Yes, I am using the geckodriver. I did see that link when I was
googling for a solution, but it seems to be fore Windows and Java while
I am using Linux and Python.
Regards, Jim
> On Wed, Nov 23, 2016 at 3:57 PM, Jim Byrnes
> <
jf_b...@comcast.net> wrote:
>
>> Ubuntu 14.04 Selenium 3.0.1 Firefox 50.0
>> Selenium-server-standalone-2.53.0.jar Geckodriver dated 10-10-16
>> (is on my path)
>>
>> Getting the following message:
>>
>> Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms.
>>
>> Googling turns up lots of hits but they seem to be about Firefox 47
>> and Selenium 2.xx.
>>
>> I get that error running this little test script.
>>
>> from selenium import webdriver
>>
>> desired_caps = {} desired_caps['platform'] = 'LINUX'
>> desired_caps['browserName'] = 'firefox' driver =
>> webdriver.Remote('
http://127.0.0.1:4444/wd/hub', desired_caps)
>> driver.get('
http://www.yahoo.com')
>>
>> This is my first attempt at using the standalone server so maybe I
>> am doing something wrong.
>>
>> Regards, Jim
>>
>> -- You received this message because you are subscribed to the
>> Google Groups "Selenium Users" group. To unsubscribe from this
>> group and stop receiving emails from it, send an email to
>>
selenium-user...@googlegroups.com.
>> gid/selenium-users/o153b8%24hr7%241%
40blaine.gmane.org. For more
>> options, visit
https://groups.google.com/d/optout.
>>
>