Python Forum
Selenium/Helium loads up a blank web page - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Selenium/Helium loads up a blank web page (/thread-33022.html)



Selenium/Helium loads up a blank web page - firaki12345 - Mar-23-2021

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