I need to open this website https://gem.gov.in/ with Python Selenium
I have tried to do it this way:
import undetected_chromedriver as uc
import time
driver = uc.Chrome(use_subprocess=True)
driver.get('https://gem.gov.in/view_contracts')
time.sleep(5)
But the site does not load at all. No errors. Just doesn't load
I also tried to use VPN. I use ExpressVPN. Choose India. But still no result
Question
How can I open this website?