Google Cloud实例上的Selenium Webdriver不会加载我需要的某个网址

时间:2017-07-16 15:08:59

标签: python selenium webdriver phantomjs google-cloud-platform

致电

driver.get()

永远不会结束。我尝试过使用Chrome和PhantomJS,但是这个URL(和其他类似的URL)也不会加载。其他网站上的网址运行正常。云实例正在运行Ubuntu 16.04,我已经正确配置了Webdriver。

这个代码在我自己的笔记本电脑上运行良好。

from selenium import webdriver
from pyvirtualdisplay import Display
import time

display = Display(visible=0, size=(800, 600))
display.start()

driver = webdriver.PhantomJS()
driver.get('https://api.flightradar24.com/common/v1/flight/list.json?query=vt-iao&fetchBy=reg&page=1&limit=100&token=')
#driver.get('http://www.google.com')
# ^works

编辑:我实际上有一些其他Selenium代码无法完成加载请求此特定URL的页面。上面的代码只是为了证明这个问题。

0 个答案:

没有答案