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()