When I tried to test the function that makes it impossible to paste due to permissions, I didn't go well at all and was quite addicted to it.
#copy
page.execute_script('
var copy_target = document.getElementById("copy_target");
copy_target.select();
document.execCommand("copy");
')
#paste
find_by_id('paste_target').send_keys [:control, 'V']
Recommended Posts