当前位置: 首页>>代码示例>>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;未经允许,请勿转载。