我想通过右键单击和 alt+y 复制页面中的图像,并且遵循代码在 firefox 中运行良好,但 chrome 和 ie。所以我无法从剪贴板中获取图像。
require 'watir-webdriver'
b = Watir::Browser.new :chrome
b.goto('www.baidu.com')
b.img(:src=>"http://www.baidu.com/img/baidu_sylogo1.gif").right_click
b.send_keys ("{alt}y")
并且遵循代码可以很好地工作
require 'watir-webdriver'
b = Watir::Browser.new :chrome
b.goto('www.baidu.com')
b.send_keys :tab
这可以很好地工作