当前位置: 首页>>代码示例>>Java>>正文


Java WebClient.waitForBackgroundJavaScriptStartingBefore方法代码示例

本文整理汇总了Java中com.gargoylesoftware.htmlunit.WebClient.waitForBackgroundJavaScriptStartingBefore方法的典型用法代码示例。如果您正苦于以下问题:Java WebClient.waitForBackgroundJavaScriptStartingBefore方法的具体用法?Java WebClient.waitForBackgroundJavaScriptStartingBefore怎么用?Java WebClient.waitForBackgroundJavaScriptStartingBefore使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.gargoylesoftware.htmlunit.WebClient的用法示例。


在下文中一共展示了WebClient.waitForBackgroundJavaScriptStartingBefore方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: allowAccess

import com.gargoylesoftware.htmlunit.WebClient; //导入方法依赖的package包/类
private HtmlPage allowAccess(WebClient webClient, HtmlPage allowAccessPage) throws IOException {
	HtmlButton allowAccessButton = (HtmlButton) allowAccessPage.getElementById("submit_approve_access");
	if (allowAccessButton == null) {
		throw new RuntimeException("Cannot find allow access button in html page :\n" + allowAccessPage.asXml());
	}
	webClient.waitForBackgroundJavaScriptStartingBefore(WAIT_DELAY_MS);
	// allowAccessButton.click() does not work because
	// allowAccessButton.isVisible() is false
	// for some reason (click() was working with htmlunit 2.23)
	HtmlPage tokenPage = clickButtonIgnoringVisibility(allowAccessButton);
	return tokenPage;
}
 
开发者ID:cchabanois,项目名称:mesfavoris,代码行数:13,代码来源:HtmlUnitAuthorizationCodeInstalledApp.java

示例2: create

import com.gargoylesoftware.htmlunit.WebClient; //导入方法依赖的package包/类
/**
 * Starts the CSV link creation process.
 * 
 * @throws Exception If there was an error while getting the CSV specific information from the forum thread.
 */
public void create() throws Exception{
	java.util.logging.Logger.getLogger("com.gargoylesoftware").setLevel(java.util.logging.Level.OFF);
	
	WebClient webClient = new WebClient(BrowserVersion.CHROME);
    HtmlPage page = (HtmlPage) webClient.getPage(forumThreadLink);
    webClient.waitForBackgroundJavaScriptStartingBefore(waitForJavaScript);
    HtmlAnchor anchor = (HtmlAnchor) page.getByXPath(xPath).get(0);
    csvFileLink = anchor.getHrefAttribute();
    csvFileLink = "http://www.pathofexile.com" + csvFileLink.subSequence(0, csvFileLink.length()-1);
    webClient.close();  
}
 
开发者ID:jkjoschua,项目名称:poe-ladder-tracker-java,代码行数:17,代码来源:CSVLinkCreator.java

示例3: confirmRecoveryEmail

import com.gargoylesoftware.htmlunit.WebClient; //导入方法依赖的package包/类
private HtmlPage confirmRecoveryEmail(WebClient webClient, HtmlPage htmlPage) throws IOException {
	List<HtmlForm> forms = htmlPage.getForms();
	HtmlForm challengeForm = forms.stream().filter(
			form -> "challenge".equals(form.getId()) && "/signin/challenge/kpe/2".equals(form.getActionAttribute()))
			.findFirst().get();
	HtmlInput htmlInput = challengeForm.getInputByName("email");
	htmlInput.setValueAttribute(recoveryEmail.get());
	HtmlSubmitInput signInButton = (HtmlSubmitInput) challengeForm.getInputByValue("Done");
	HtmlPage nextPage = signInButton.click();
	webClient.waitForBackgroundJavaScriptStartingBefore(WAIT_DELAY_MS);
	return nextPage;
}
 
开发者ID:cchabanois,项目名称:mesfavoris,代码行数:13,代码来源:HtmlUnitAuthorizationCodeInstalledApp.java

示例4: selectEmailRecoveryAsSignInChallenge

import com.gargoylesoftware.htmlunit.WebClient; //导入方法依赖的package包/类
private HtmlPage selectEmailRecoveryAsSignInChallenge(WebClient webClient, HtmlPage signInChallengePage)
		throws IOException {
	List<HtmlForm> forms = signInChallengePage.getForms();
	Optional<HtmlForm> kpeForm = forms.stream()
			.filter(form -> "/signin/challenge/kpe/2".equals(form.getActionAttribute())).findFirst();
	if (!kpeForm.isPresent()) {
		throw new RuntimeException(
				"Cannot find recovery by email form in html page :\n" + signInChallengePage.asXml());
	}
	HtmlButton button = (HtmlButton) kpeForm.get().getElementsByTagName("button").get(0);
	HtmlPage htmlPage = button.click();
	webClient.waitForBackgroundJavaScriptStartingBefore(WAIT_DELAY_MS);
	return htmlPage;
}
 
开发者ID:cchabanois,项目名称:mesfavoris,代码行数:15,代码来源:HtmlUnitAuthorizationCodeInstalledApp.java


注:本文中的com.gargoylesoftware.htmlunit.WebClient.waitForBackgroundJavaScriptStartingBefore方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。