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