當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。