Python Forum

Full Version: Selenium/Helium loads up a blank web page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
ok i have been web scraping the past week, but this particular website is giving me a lot of problems, it just loads a blank web page with nothing to see.

website: NordStrom


My Code:

from helium import*
import time

useragent ="Mozilla/5.0 (Windows NT 6.1; rv:85.0) Gecko/20100101 Firefox/85.0"
    

options = FirefoxOptions()
    
options.set_preference("general.useragent.override",useragent)


s = start_firefox("https://www.nordstrom.com",headless=False,options=options)

time.sleep(5)

kill_browser()
I tried to access it regularly without any VPNS and it still does not load through selenium/helium