码迷,mamicode.com
首页 > 编程语言 > 详细

python selenium utf-8 问题

时间:2014-11-19 16:31:19      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   ar   color   os   sp   for   strong   

高端自动化测试交流群: 310924886

‘utf8‘ codec can‘t decode byte 0xe4 in position 0: unexpected end of data

# -*- coding: UTF-8 -*-
from selenium import webdriver
import time,os
import codecs
import sys
source=open("D:/uxiaoxinlenium/testdata/data.txt","r",encoding=‘utf‘)
values=source.readline()#unicode(values,‘utf8‘)
#unicode(values, errors=‘ignore‘)
#values.decode(‘utf-8‘).encode(‘gb2312‘)
source.close()
#print values
dr=webdriver.Firefox()
dr.get("http://www.baidu.com/")
time.sleep(3)
dr.find_element_by_id("kw").clear()
dr.find_element_by_id("kw").send_keys(values)

问题:‘utf8‘ codec can‘t decode byte 0xe4 in position 0: unexpected end of data

dr.find_element_by_id("kw").send_keys(values)

解决方案:

把下面的代码添加到程序中

values = values.decode(‘utf-8‘)


python selenium utf-8 问题

标签:style   http   io   ar   color   os   sp   for   strong   

原文地址:http://my.oschina.net/u/855532/blog/346366

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!