當前位置: 首頁>>代碼示例>>Java>>正文


Java WebDriver.manage方法代碼示例

本文整理匯總了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);
		}
	}
}
 
開發者ID:xbynet,項目名稱:crawler,代碼行數:21,代碼來源:WebDriverManager.java

示例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;
}
 
開發者ID:LinuxSuRen,項目名稱:phoenix.webui.framework,代碼行數:42,代碼來源:KaptchaInvoker.java

示例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();
	}
 
開發者ID:xbynet,項目名稱:crawler,代碼行數:11,代碼來源:WindowUtil.java


注:本文中的org.openqa.selenium.WebDriver.manage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。