fysh711426 / UndetectedChromeDriver

GNU General Public License v3.0
166 stars 60 forks source link

does not work anymore #33

Open Anushiravani opened 1 year ago

Anushiravani commented 1 year ago

I used this library. But it doesn't seem to work anymore You may check image

fysh711426 commented 1 year ago

Ok, thanks, i'll fix it as soon as possible.

alber7rp commented 1 year ago

I used this library. But it doesn't seem to work anymore You may check image

Just to test it, could you please check if works with the following pull request? #34

@fvzptr Test the updated code of the PR please #34

fvzptr commented 1 year ago

Any news about fix? @fysh711426

Cryptome2 commented 1 year ago

Same issue with Cloudfare

Anushiravani commented 1 year ago

I checked this with the main repository. It seems that the same problem exists on undetected-chromedriver

alber7rp commented 1 year ago

Could you check it with the code of this branch? https://github.com/alber7rp/UndetectedChromeDriver/tree/Feature/UpdatePatcherMethod

fysh711426 commented 1 year ago

Give me some time I'm processing.

fysh711426 commented 1 year ago

I fixed it, try it.

PM> Install-Package Selenium.UndetectedChromeDriver -Version 1.0.8
furkanakmann commented 1 year ago

In the latest version, Google cannot log in to Google services because it does not trust the browser. But in version 1.0.7, it can be logged in without any problems. Have you checked this in the latest version?

fysh711426 commented 1 year ago

https://github.com/ultrafunkamsterdam/undetected-chromedriver/issues/1054 May be a discussion on this issue.

luanmacek commented 1 year ago

In the latest version, Google cannot log in to Google services because it does not trust the browser. But in version 1.0.7, it can be logged in without any problems. Have you checked this in the latest version?

How did you make it work? Mine doesn't work even in 1.0.7. What is your chrome and chrome driver version?

furkanakmann commented 1 year ago

In the latest version, Google cannot log in to Google services because it does not trust the browser. But in version 1.0.7, it can be logged in without any problems. Have you checked this in the latest version?

How did you make it work? Mine doesn't work even in 1.0.7. What is your chrome and chrome driver version? I have just restored it to version 1.0.7 and I am able to log in to Google accounts when I run it normally. But when I update, I get an error.

fysh711426 commented 1 year ago

v1.0.8 added these codes, and modified the patcher of chrome driver.

options.AddArguments("--no-sandbox", "--test-type");
options.AddArguments("--window-size=1920,1080");
options.AddArguments("--start-maximized");

Try it.

using (var driver = UndetectedChromeDriver.Create(
    ...
    noSandbox: false))
luanmacek commented 1 year ago

In the latest version, Google cannot log in to Google services because it does not trust the browser. But in version 1.0.7, it can be logged in without any problems. Have you checked this in the latest version?

How did you make it work? Mine doesn't work even in 1.0.7. What is your chrome and chrome driver version? I have just restored it to version 1.0.7 and I am able to log in to Google accounts when I run it normally. But when I update, I get an error.

What chromedriver version and chrome browser version do you use sir? I would like to sign in google accounts

fvzptr commented 1 year ago

I used this library. But it doesn't seem to work anymore You may check image

Just to test it, could you please check if works with the following pull request? #34

@fvzptr Test the updated code of the PR please #34

I try it asap. It work with last version of chrome and chromedriver?

furkanakmann commented 1 year ago

In the latest version, Google cannot log in to Google services because it does not trust the browser. But in version 1.0.7, it can be logged in without any problems. Have you checked this in the latest version?

How did you make it work? Mine doesn't work even in 1.0.7. What is your chrome and chrome driver version? I have just restored it to version 1.0.7 and I am able to log in to Google accounts when I run it normally. But when I update, I get an error.

What chromedriver version and chrome browser version do you use sir? I would like to sign in google accounts

Google Chrome : 110.0.5481.178 ChromeDriver : 110.0.5481.77

dobahoan2792000 commented 1 year ago

In the latest version, Google cannot log in to Google services because it does not trust the browser. But in version 1.0.7, it can be logged in without any problems. Have you checked this in the latest version?

How did you make it work? Mine doesn't work even in 1.0.7. What is your chrome and chrome driver version? I have just restored it to version 1.0.7 and I am able to log in to Google accounts when I run it normally. But when I update, I get an error.

What chromedriver version and chrome browser version do you use sir? I would like to sign in google accounts

Google Chrome : 110.0.5481.178 ChromeDriver : 110.0.5481.77

Yeah like @furkanakmann said the lastest version can't login google, but if i downgrade to 1.0.7 it works fine

fvzptr commented 1 year ago

I used this library. But it doesn't seem to work anymore You may check image

Just to test it, could you please check if works with the following pull request? #34 @fvzptr Test the updated code of the PR please #34

I try it asap. It work with last version of chrome and chromedriver?

I pulled on my vs the undetectedChromeDriver version 1.1.1. I have updated chromedriver to release 111.0.5563.64 I have updated chrome to release 111.0.5563.65

Still don't pass cloudfare protection and get detected. Change in Pull request #34 (patcher) is it contained in release 1.1.1 ?

Any suggestions to get it working again? what are the fix times?

fysh711426 commented 1 year ago

Patcher has been fixed, chrome 110 works fine, chrome 111 has not been tested yet.

fvzptr commented 1 year ago

Patcher has been fixed, chrome 110 works fine, chrome 111 has not been tested yet.

I can pass the nowsecure.nl check but I'm having problems with other sites (bet365) with cloudfare protection and more. I reported the problem in issue #42. Please check it

fysh711426 commented 1 year ago

Ok, thanks.

step1985 commented 11 months ago

Something is wrong again! Please fix it! public static void Main(string[] args) { // xxx is a custom directory var driverExecutablePath = $@"D:\xxx\chromedriver.exe";

        using var driver = UndetectedChromeDriver.Create(
            driverExecutablePath: driverExecutablePath);

        driver.GoToUrl("https://nowsecure.nl");

        Console.ReadLine();
    }

untidetect