Selenium PhantomJS和Chrome驱动程序在特定URL上返回空白页

时间:2019-05-17 01:44:41

标签: python selenium-webdriver phantomjs selenium-chromedriver

我正在docker容器中运行selenium / chrome。因此,我使用了webdriver.Remote

下面是我的代码。

driver = webdriver.Remote("http://127.0.0.1:4444/wd/hub", DesiredCapabilities.CHROME)
driver.get("https://shop.coles.com.au/a/a-national/everything/browse/entertaining-at-home/cheese-board-selections?pageNumber=1")
print(driver.page_source)

我的输出如下。

<html><head></head><body></body></html>

该代码可用于任何其他URL,但不适用于上述URL。我也尝试使用PhantomJS,但没有运气。

我看过PhantomJS returning empty web page (python, Selenium),但是我不知道如何将service_args添加到webdriver.Remote

0 个答案:

没有答案