有什么方法可以将WebDriver(Selenium 2)与C#结合使用来最大化浏览器窗口?
将此功能添加到WebDriver时存在一个突出的问题,可以在此处进行跟踪:http : //code.google.com/p/selenium/issues/detail? id=174
一种解决方法是使用JavascriptExector以下方法:
JavascriptExector
public void resizeTest() { driver.Navigate().GoToUrl("http://www.example.com/"); ((IJavaScriptExecutor)driver).ExecuteScript("window.resizeTo(1024, 768);"); }