Currently, I'm attempting to scrape a few retail websites to compare prices using Selenium and BeautifulSoup. However, there's a particular page Selenium won't load. The browser opens, but the page remains blank. I've tried googling to check if there are certain websites Selenium has difficulty accessing, but turned up nothing. I was using the Gecko driver for Firefox, and changed to the Chromedriver to make sure there wasn't an issue with the particular browser.
Code:
URL = "https://shop.coles.com.au/a/national/everything/browse/pantry/breakfast?pageNumber=1"
browser = webdriver.Chrome(executable_path="C:\ChromeDriver\chromedriver")
browser.get(URL)