python - 无法在 python selenium 脚本中使用具有特殊字符 '$' 的密码

标签 python selenium utf-8 decode python-unicode

示例脚本:

# -*- coding: utf-8 -*-
from selenium import webdriver
import os

#credentials
USERNAME = '##########'
PASSWORD = '#####$####​'

#load profile
profile = webdriver.FirefoxProfile()
profile.set_preference('browser.download.folderList', 2)  # custom location
profile.set_preference('browser.download.manager.showWhenStarting', False)
profile.set_preference('browser.download.dir', os.getcwd())

# following properties to suppress download popup screen
profile.set_preference("browser.helperApps.neverAsk.openFile", "text/csv")
profile.set_preference("browser.helperApps.neverAsk.saveToDisk", "text/csv")

# initialise driver with above profile
driver = webdriver.Firefox(profile)


#make the request to the url
driver.get('https://api.instagram.com/oauth/authorize/?client_id=#################&redirect_uri=#############&response_type=token')
#browser.current_url
driver.implicitly_wait(5)

#Enter username and password
Username = driver.find_element_by_css_selector('#id_username')
Username.send_keys(USERNAME)

Password = driver.find_element_by_css_selector('#id_password')
Password.send_keys(PASSWORD)

#SignIn button click
SignIn = driver.find_element_by_css_selector('.button-green').click()

如您所见,我正在尝试对 Instagram 应用程序进行身份验证。我无法为具有特殊字符“$”的密码传递正确的值。我收到以下错误。

C:\Python27\python.exe "D:/Projects/#####/Instagram Data Extraction/ETL_Scripts/Instagram_auth.py"
Traceback (most recent call last):
  File "D:/Projects/######/Instagram Data Extraction/ETL_Scripts/Instagram_auth.py", line 35, in <module>
    Password.send_keys(PASSWORD)
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\webelement.py", line 322, in send_keys
    self._execute(Command.SEND_KEYS_TO_ELEMENT, {'value': keys_to_typing(value)})
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\webelement.py", line 457, in _execute
    return self._parent.execute(command, params)
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 231, in execute
    response = self.command_executor.execute(driver_command, params)
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\remote_connection.py", line 392, in execute
    data = utils.dump_json(params)
  File "C:\Python27\lib\site-packages\selenium\webdriver\remote\utils.py", line 32, in dump_json
    return json.dumps(json_struct)
  File "C:\Python27\lib\json\__init__.py", line 243, in dumps
    return _default_encoder.encode(obj)
  File "C:\Python27\lib\json\encoder.py", line 207, in encode
    chunks = self.iterencode(o, _one_shot=True)
  File "C:\Python27\lib\json\encoder.py", line 270, in iterencode
    return _iterencode(o, 0)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xe2 in position 0: unexpected end of data

谁能帮我解决这个问题? 提前致谢。

最佳答案

看起来你在字符串末尾有一个符号,无法编码

>>> PASSWORD.decode('utf-8')
u'#####$####\u200b'

你应该尝试删除它

关于python - 无法在 python selenium 脚本中使用具有特殊字符 '$' 的密码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48687883/

相关文章:

python - py2app/Tkinter应用程序错误: "classic environment is no longer supported"

python - AppEngine python 线程能否比原始请求持续更长时间?

python - 长文档的 Huggingface 文档摘要

java - 如何从另一个类访问另一个类的 void 方法的变量

Python从列表中删除相同的字符

selenium - 验收测试,docker 和 selenium

selenium - 如何确保保留TestNG.xml中指定的顺序?

PHP/MySQL - 表单输入值 "&"保存为 "&amp;"

python - string 字符串中 utf-8 单词的索引

php - 如何在 PHP :json_encode 中使用 UTF-8