1

I was trying to scrape a website using selenium web driver. But my automated browser doesn't load the website, I've also tried to load it manually opening a new tab but failed to load only shows blank page but my desktops chrome loads the website fine. I don't get it why the automated browser doesn't load the page.

class SeleniumScrapper():
    def __init__(self):
        self.url = 'https://shop.coles.com.au/a/aspley/product/mutti-tomato-passata-2349503p'
        self.path = '/home/shanto/Software/ChromeDriver/chromedriver'
        self.browser = webdriver.Chrome(self.path)
        self.browser.get(self.url)

Inspection from chrome developer tools sents one request status code 404 enter image description here

Shahrear Bin Amin
  • 1,075
  • 13
  • 31
  • Check if there are any cookies or policies that are required to access the application. If you want to launch chrome your default chrome profile visit [this](https://stackoverflow.com/questions/56344560/selenium-point-towards-default-chrome-session/56402113#56402113) – supputuri Jul 08 '20 at 03:08
  • If there is any response received from the server? What is the response code? – Alexey R. Jul 08 '20 at 14:27
  • @AlexeyR. from the inspection section found that sends a request name fingerprint gets status code 404. Please check updated question – Shahrear Bin Amin Jul 08 '20 at 16:35

0 Answers0