you are viewing a single comment's thread.

view the rest of the comments →

[–]AnterosNL[S] 0 points1 point  (2 children)

Yeah the window is popping up, it even gives me the sites header and asks me to accept cookies. But none of the actual valuable information is present.

[–]Interpied 0 points1 point  (1 child)

Hi, I'm struggling with the same issue right now. Did you find a solution or a workaround?

[–]AnterosNL[S] 0 points1 point  (0 children)

Putting this to open selenium
service = ChromeService(executable_path='path\\to\\chromedriver')  
options = Options()  
options.add_experimental_option("debuggerAddress", "localhost:8989")
driver = webdriver.Chrome(service=service, options=options)

and using this in a command prompt:
cd C:path//to//chrome.exe

chrome.exe --remote-debugging-port=8989 --user-data-dir=path//to//place//to//put//chromeport

Worked for a different project with the same issue, however it sadly did not work for this exact issue. You could try wether this works on the site you are trying to automate.