本文整理汇总了Java中org.openqa.selenium.WebDriver.manage方法的典型用法代码示例。如果您正苦于以下问题:Java WebDriver.manage方法的具体用法?Java WebDriver.manage怎么用?Java WebDriver.manage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.openqa.selenium.WebDriver
的用法示例。
在下文中一共展示了WebDriver.manage方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: load
import org.openqa.selenium.WebDriver; //导入方法依赖的package包/类
public void load(String url,int sleepTimeMillis,SeleniumAction... actions){
WebDriver driver=null;
try {
driver=webDriverPool.get();
driver.get(url);
sleep(sleepTimeMillis);
WebDriver.Options manage = driver.manage();
manage.window().maximize();
for(SeleniumAction action:actions){
action.execute(driver);
}
} catch (InterruptedException e) {
e.printStackTrace();
log.error("",e);
}finally{
if(driver!=null){
webDriverPool.returnToPool(driver);
}
}
}
示例2: execute
import org.openqa.selenium.WebDriver; //导入方法依赖的package包/类
/**
* 获取验证码
* @param engine 引擎
* @param param 例如:data,http://localhost:8080/G2/captcha!getLastCode.do
* @return 验证码
*/
public static String execute(SeleniumEngine engine, String param)
{
WebDriver driver = engine.getDriver();
Options manage = driver.manage();
String[] paramArray = param.split(",", 2);
if(paramArray.length != 2)
{
throw new RuntimeException("Param format is error, should be 'data,url'");
}
String key = paramArray[0];
String url = paramArray[1];
Set<Cookie> cookies = manage.getCookies();
List<AtCookie> atCookieList = new ArrayList<AtCookie>();
for(Cookie cookie : cookies)
{
String name = cookie.getName();
String value = cookie.getValue();
AtCookie atCookie = new AtCookie();
atCookie.setName(name);
atCookie.setValue(value);
atCookie.setPath(cookie.getPath());
atCookie.setDomain(cookie.getDomain());
atCookieList.add(atCookie);
}
String code = HttpApiUtil.getJsonValue(url, atCookieList, key);
return code;
}
示例3: maximize
import org.openqa.selenium.WebDriver; //导入方法依赖的package包/类
/**
* 窗口最大化
* @param driver
*/
public static void maximize(WebDriver driver){
WebDriver.Options manage = driver.manage();
// manage.window().maximize();
manage.window().setSize(new Dimension(1920,1080));
driver.navigate().refresh();
}