本文整理汇总了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;
}