我正在寻找一种在 PhantomJS 中设置显示大小(不是视口)的方法。我找到了一段直接使用 PhantomJS 执行此操作的代码,但我还没有找到使用 webdriver 绑定执行此操作的方法。
问问题
1708 次
2 回答
0
我这样做是WebDriver:
public static void setWindowPosition(String handle, int width, int height, int fleft, int ftop) {
driver.switchTo().window( handle ).manage().window().setPosition( new Point(fleft, ftop) );
driver.switchTo().window( handle ).manage().window().setSize( new Dimension( width, height) );
}
于 2014-01-14T15:39:24.773 回答
0
在 C# 中,我在 Selenium Webdriver 中使用这行代码:
Driver.Manage().Window.Size = new Size(1366, 768);
于 2014-03-10T20:42:54.697 回答