Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm start using selenium and I wanted to fill in the input field for e-mail using webdriver. After running the script, the @ sign is replace with content of my clipboard.

Here is my code:

from selenium import webdriver
from selenium.webdriver.common.keys import Keys

url = 'someUrl'
xpath = 'someXpath'

browser = webdriver.Chrome()
browser.get(url)
input = browser.find_element_by_xpath(xpath)

input.send_keys("@")

Can someone help?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...