Why can’t I open this webpage using selenium?I tried to open this webpage, but the display was blank.But if I paste the URL into other browsers, it can be opened. I don’t know whether it is a problem with the chrome driver or the webpage.thanks for your help.
from seleniumwire import webdriverurl = 'http://www.customs.gov.cn/customs/syx/index.html'browser = webdriver.Chrome() # (options = option)browser.get(url)