python+selenium输入中文编码问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium输入中文编码问题相关的知识,希望对你有一定的参考价值。

#-*- coding: GB2312 -*-

#上面这一行是解决输入文本框中的问题
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
import time


browser = webdriver.Firefox() # Get local session of firefox
browser.get("http://XXXX.XXXX.com") # Load page

time.sleep(0.2)
username=browser.find_element_by_id("XXXX");
passwd=browser.find_element_by_id("XXXX");
submit=browser.find_element_by_id("XXXX")

username.send_keys("XXXX")

passwd.send_keys("XXXX")

time.sleep(0.2) # Let the page load, will be added to the API
submit.click()


print("Login Success!")
time.sleep(2)

以上是关于python+selenium输入中文编码问题的主要内容,如果未能解决你的问题,请参考以下文章

python中文编码问题

[python IO学习篇] 补充.py文件是中文, .ini文件内容是中文

python selenium 编码问题

windows使用pip安装selenium报错问题

python py__selenium.py

python selenium.py