Python/Java 中Appium如何获取android / Ios 粘贴板剪切板上的内容
Song • 7572 次浏览 • 0 个回复 • 2020年12月23日
appium
新版本增加了获取粘贴板的内容。如果你的不能获取建议更新到新版本。
Java中Appium获取剪切板
String ss = driver.getClipboardText();
Python中Appium获取剪切板
有两种方式获取,get_clipboard_text
和get_clipboard
。
ss = driver.get_clipboard_text()
print(ss)
print(driver.get_clipboard())
# https:baidu.com
# b'https:baidu.com'
原创文章,转载请注明 :Python/Java 中Appium如何获取android / Ios 粘贴板剪切板上的内容 - pytorch中文网
原文出处: https://ptorch.com/news/265.html
问题交流群 :168117787
- 没有评论