将文本发送到硒中的剪贴板

Send text to clipboard in selenium

我使用的表单不​​允许键入重音符号,但它允许粘贴带有重音符号的文本。

如何将文本发送到剪贴板,然后将包含重音符号的文本粘贴到表单中?

from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium import webdriver
options = Options()
options.headless = True
driver = webdriver.Chrome('chromedriver.exe',options=options)

driver.get('https://www.website.com')
WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, openform))).click()

send accent text to clipboard


driver.find_element(By.XPATH, formfield).send_keys(Keys.CONTROL, 'v')

您可以在 python 中尝试将所需文本复制到剪贴板,然后粘贴。它与 python 3.8 一起使用。你也可以试试。如果您遇到任何问题,请告诉我。

import pyperclip
pyperclip.copy('Text to be copied to the clipboard.')
clipboard_text= pyperclip.paste()
print(clipboard_text)