-
In my if name == "main":
I am still have access denied when browsing to that website though using uc. Any thought on how to solve? |
Beta Was this translation helpful? Give feedback.
Answered by
KebabLord
Mar 30, 2024
Replies: 1 comment
-
i can access it with undetected chromedriver make sure you are using the latest version; also you don't have to install webdriver everytime. import undetected_chromedriver as uc
driver = uc.Chrome()
url = "https://redeem.tcg.pokemon.com/en-us/"
driver.get(url)
input("PRESS ENTER TO CLOSE THE SCRIPT") |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
fw2155
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
i can access it with undetected chromedriver
make sure you are using the latest version;
py -m pip install -U undetected-chromedriver
also you don't have to install webdriver everytime.