我创建了一个使用Selenium webdriver废弃网站的python脚本。现在我正在尝试使用CGI从Web运行此脚本。 所以为了确保我的CGI服务器正常工作,我尝试了这个:
import cgi
print 'Content-Type: text/html'
print
list_brand = ['VOLVO','FIAT', 'BMW']
print '<h1>TESTING CGI</h1>'
print '<form>'
print '<select>'
for i in range(3):
print '<option value="' + list_brand[i] + '">'+ list_brand[i] +'</option>'
print '</select>'
print '</form>'
它工作正常。现在,当我使用这个脚本使用Selenium和CGI时:
import cgitb
import cgi
from selenium import webdriver
print 'Content-Type: text/html'
print
cgitb.enable(display=0, logdir="C:/path/to/log/directory")
path_to_pjs = 'C:path/to/phantomjs-2.1.1-windows/bin/phantomjs.exe'
browser = webdriver.PhantomJS(executable_path = path_to_pjs)
#Reaching to URL
url = 'http://www.website.fr/cl/2/products'
browser.get(url)
div_set = browser.find_elements_by_class_name('productname')
print '<form>'
print '<select>'
for div in div_set:
print '<option value="' + div.find_element_vy_tag_name('h3').text + '">'+ div.find_element_vy_tag_name('h3').text +'</option>'
print '</select>'
print '</form>'
页面继续加载但没有响应。知道这是否可能(我的意思是从cgi脚本运行selenium)或者为什么我的服务器没有响应?
答案 0 :(得分:0)
好吧,我找到了解决问题的方法!为了一个:我没有注意到我在我的函数中写了vy
而不是by
:div.find_element_by_tag_name
。
第二件事是使用Apache服务器。由于某种原因,使用CGIHTTPServer的lite python服务器不起作用。所以我使用XAMPP修改了httpd.conf
文件,最后一件事是将路径#!/Python27/python
添加到脚本中。