TA的每日心情 | 无聊 昨天 09:47 |
---|
签到天数: 528 天 连续签到: 1 天 [LV.9]测试副司令
|
1测试积点
selenium和PhantomJS的配合使用:AttributeError: module 'selenium.webdriver' has no attribute 'PhantomJS'-
- from selenium import webdriver
- import time
- import csv
- import pymongo
- client = pymongo.MongoClient('localhost', 27017)
- mydb = client['mydb']
- qq_shuo = mydb['qq_shuo']
- driver = webdriver.PhantomJS()
- driver.maximize_window()
- def get_info(qq):
- driver.get('http://user.qzone.qq.com/{}/311'.format(qq))
- driver.implicitly_wait(10)
- try:
- driver.find_element_by_id('login_div')
- a = True
- except:
- a = False
- if a == True:
- driver.switch_to.frame('login_frame')
- driver.find_element_by_id('switcher_plogin').click()
- driver.find_element_by_id('u').clear()
- driver.find_element_by_id('u').send_keys('账号')
- driver.find_element_by_id('p').clear()
- driver.find_element_by_id('p').send_keys('密码')
- driver.find_element_by_id('login_button').click()
- time.sleep(3)
- driver.implicitly_wait(3)
- try:
- driver.find_element_by_id('QM_OwnerInfo_Icon')
- b = True
- except:
- b = False
- if b == True:
- driver.switch_to.frame('app_canvas_frame')
- contents = driver.find_elements_by_css_selector('.content')
- times = driver.find_elements_by_css_selector('.c_tx.c_tx3.goDetail')
- for content, tim in zip(contents, times):
- data = {
- 'time': tim.text,
- 'content': content.text
- }
- qq_shuo.insert_one(data)
- if __name__ == '__main__':
- qq_lists = []
- fp = open('C:/Users/LP/Desktop/QQmail.csv')
- reader = csv.DictReader(fp)
- for row in reader:
- qq_lists.append(row['电子邮件'].split('@')[0])
- fp.close()
- for item in qq_lists:
- get_info(item)
复制代码 运行结果及报错内容
-
- "D:\Program Files (x86)\Anaconda3\python.exe" E:/python/从零开始学Python网络爬虫_源代码/qq_kongjian.py
- Traceback (most recent call last):
- File "E:/python/从零开始学Python网络爬虫_源代码/qq_kongjian.py", line 10, in <module>
- driver = webdriver.PhantomJS(executable_path=r'D:\Program Files (x86)\phantomjs-2.1.1-windows\bin\phantomjs.exe')
- AttributeError: module 'selenium.webdriver' has no attribute 'PhantomJS'
- Process finished with exit code 1
-
复制代码 我的解答思路和尝试过的方法
-
- driver = webdriver.PhantomJS(executable_path=r'D:\Program Files (x86)\phantomjs-2.1.1-windows\bin\phantomjs.exe')
复制代码
|
|