Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error AddExtenxion in Chromedriver v74.0.0 nutget c# on new update #49

Open
chellamit9x opened this issue Apr 30, 2019 · 1 comment
Open

Comments

@chellamit9x
Copy link

this code error.
` //here error

        IWebDriver driver;
        ChromeOptions options = new ChromeOptions();
        options.AddExtension(@"./TempFile/exxx.crx");
        driver = new ChromeDriver(options);
        driver.Navigate().GoToUrl("https://google.com");`

if not add extension then not error
` //not error

        IWebDriver driver;
        ChromeOptions options = new ChromeOptions();
        driver = new ChromeDriver(options);
        driver.Navigate().GoToUrl("https://google.com");`
@DonovanPhoenix
Copy link

I have a similar issue with this version of the chrome driver. I'm unsure if it the chrome driver that's at fault here. but i will explain as best i can.
When using the GoToUrl method the browser just doesn't go to the url, it just times out, only if some types extensions are loaded.(my code usage is the same as the OP). example: i have this extension "Adblocker-Genius-PRO_v8.2.5.crx" it works with no problem, but when i load this one "Video-Downloader-professional_v1.99.1.crx" the browser does not automatically navigate to the URL. (note the extension works fine if you interact with the browser manually) i did not have this problem with the previous version of the Chrome driver.

i'm using this:
Selenium.Chrome.Webdriver v74.0.0
Selenium.Webdriver v3.141.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants