本文整理匯總了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();
}