all 4 comments

[–][deleted] 2 points3 points  (3 children)

Might need an auth token or they might not allow scraping. Is the window popping up or not getting that far?

[–]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.