我正在使用selenium点击浏览器中的按钮,该按钮用于将文本复制到剪贴板。 复制后,我需要能够操作文本,最好是将文本存储为对象,或者通过“粘贴”到.txt文件或类似文件中。
我怎样才能实现这个目标?
答案 0 :(得分:1)
There are shell commands for accessing the Mac Pasteboard: pbcopy
and pbpaste
. You can use them in python with os.system
or subprocess
.