UnicodeDecodeError: 'utf8' codec can't decode byte 0xb2 in position 0: invalid start byte瀏覽器
自動化腳本遇到了這個問題,訪問的頁面用的utf8,爲何不行呢?編碼
decode的做用是將其餘編碼的字符串轉換成unicode編碼,如str1.decode('gb2312'),表示將gb2312編碼的字符串轉換成unicode編碼。spa
encode的做用是將unicode編碼轉換成其餘編碼的字符串,如str2.encode('gb2312'),表示將unicode編碼的字符串轉換成gb2312編碼。code
print u"輸入錯誤,已退出".decode('utf8').encode('mbcs')
火狐瀏覽器登陸遇到下面的問題:blog
selenium.common.exceptions.ElementNotVisibleException: Message: Element is not currently visible and so may not be interacted with
Stacktraceunicode