import selenium
from selenium import webdriver
browser = webdriver.PhantomJS('./phantomjs')
browser.get("https://twitter.com/")
print browser.title
print返回null 无法理解为什么browser.title会返回你的''
browser.get("https://google.com/")
print browser.title
但现在打印Google
所以有点令人沮丧的是为什么twitter.com没有在Selenium Web浏览器中回复Phatomjs
答案 0 :(得分:0)