在 Watir-webdriver 中设置浏览器窗口大小

发布于 2024-11-09 19:30:25 字数 116 浏览 1 评论 0原文

当使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

你另情深 2024-11-16 19:30:25

目前这仅适用于 Firefox:

browser.window.resize_to(800, 600)

并且您也可以移动浏览器:

browser.window.move_to(0, 0)

This works only for Firefox at the moment:

browser.window.resize_to(800, 600)

and you can move the browser, too:

browser.window.move_to(0, 0)
等待我真够勒 2024-11-16 19:30:25

我正在使用 ruby​​+watir-webdriver ,此代码适用于 FF 和 IE 浏览器(我没有在其他浏览器中检查过)

screen_width = browser.execute_script("return screen.width;")
screen_height = browser.execute_script("return screen.height;")
browser.driver.manage.window.resize_to(screen_width,screen_height)
browser.driver.manage.window.move_to(0,0)

I'm using ruby+watir-webdriver and this code works for both FF and IE browsers (I have not checked in others browsers)

screen_width = browser.execute_script("return screen.width;")
screen_height = browser.execute_script("return screen.height;")
browser.driver.manage.window.resize_to(screen_width,screen_height)
browser.driver.manage.window.move_to(0,0)
青丝拂面 2024-11-16 19:30:25

我做了这样的事情

browser = Watir::Browser.new :firefox, :profile => profile
browser.send_keys :f11

I did something like this

browser = Watir::Browser.new :firefox, :profile => profile
browser.send_keys :f11
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文