You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like to paste a multi lines text into text area. send_keys, press_keys are taking longer time for big text. So I like to paste that text into textarea , What is the best approach to do that.
I used
pyperclip.copy(text) copy that text into clipboard. I tried to use control+v without any luck.
element = sb.find_element("locator")
element.send_keys(Keys.CONTROL, 'v') is not working.
What is best approach I can follow . Actionchains or anything ?
The text was updated successfully, but these errors were encountered:
I like to paste a multi lines text into text area. send_keys, press_keys are taking longer time for big text. So I like to paste that text into textarea , What is the best approach to do that.
I used
pyperclip.copy(text) copy that text into clipboard. I tried to use control+v without any luck.
element = sb.find_element("locator")
element.send_keys(Keys.CONTROL, 'v') is not working.
What is best approach I can follow . Actionchains or anything ?
The text was updated successfully, but these errors were encountered: