简体   繁体   中英

Not able to run my program in Firefox through selenium web driver

Whenever I try to run my program through firefox browser, by default skype extensions gets launch and get this error in console..

Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms.

Please help me out for this

package practice;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class makemytrip {

    public static void main(String[] args)
    {
        WebDriver driver = new FirefoxDriver();
        driver.get("https://www.makemytrip.com/") ;
    }
}

Try removing/disabling any Skype extension which is installed in Firefox. If issue still persists, try searching for "Skype click to call" extension and un-install in from Control panel.

Hope this works for you!!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM