inflearn logo
Course

Course

Instructor

rlthf35749332's Posts

rlthf35749332 rlthf35749332

@rlthf35749332

Reviews Written
1
Average Rating
5.0

Posts 1

Q&A

insta_web 질문 있습니다!

actions.key_down(Keys.CONTROL).send_keys('v').key_up(Keys.CONTROL).perform() # id_input.send_keys(data.id) time.sleep(5) pw_selector = "#loginForm > div > div:nth-child(2) > div > label > input" pw_input = driver.find_element(By.CSS_SELECTOR,pw_selector) pw_input.click() time.sleep(5) actions = ActionChains(driver) # ctrl + c 동작 pyperclip.copy(data.pw) # ctrl + v 동작 actions.key_down(Keys.CONTROL).send_keys('v').key_up(Keys.CONTROL).perform()

Likes
1
Comments
3
Viewcount
1655