When I try to open the given URL below with Selenium in Chrome webdriver, browser just returns a blank, white page. When I enter the URL manually in a browser of my choice, I can open it and see the contents though.
I can enter to other websites, it is just this one that returns a blank page:
driver = webdriver.Chrome(executable_path = 'chromedriver')
driver.get("http://wolfscream.sozlukspot.com/")
This "sozlukspot.com" is a local Turkish website for creating little forums, I am trying to scrape a forum page here, but not only "http://wolfscream.sozlukspot.com/", none of these sozlukspot forums open with selenium.
What is the deal with this specific webpage? Why can't I open it in a Selenium Chrome webdriver? What to do in order to open this specific page? Thanks.