在 Watir-webdriver 中设置浏览器窗口大小
当使用 watir-webdriver 调用以下命令时,如何指定打开的浏览器窗口的大小?
browser = Watir::Browser.new(:firefox)
How can you specify the size of the browser window opened when you call the following with watir-webdriver?
browser = Watir::Browser.new(:firefox)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
目前这仅适用于 Firefox:
并且您也可以移动浏览器:
This works only for Firefox at the moment:
and you can move the browser, too:
我正在使用 ruby+watir-webdriver ,此代码适用于 FF 和 IE 浏览器(我没有在其他浏览器中检查过)
I'm using ruby+watir-webdriver and this code works for both FF and IE browsers (I have not checked in others browsers)
我做了这样的事情
I did something like this