[Selenium]等待元素出现之后再消失,界面上的loading icon都属于这种类型,之前的方法总是卡死,换这种方法目前还好用的...

本文介绍了一种在WebDriver中等待页面元素出现后再消失的方法,并提供了具体的实现代码。该方法适用于界面上的loading图标等元素,通过自定义超时时间来确保元素能够正确加载并最终消失。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

等待元素出现之后再消失,界面上的loading icon都属于这种类型,之前的方法总是卡死,换这种方法目前还好用的

/**
     * Check if the element present with customized timeout
     * @param driver
     * @param locator
     * @param errorMessage
	 * @return
	 */
	public Boolean waitUntilElementPresent(WebDriver driver,final By locator, long timeOutInSeconds) {
		Boolean isPresent = false;
		for(int i=0;i<timeOutInSeconds;i++){
			isPresent=SeleniumUtil.isElementPresent(driver,locator);
			if(true==isPresent){
				break;
			}
			else{
				SeleniumUtil.sleep(1);
				System.out.println("Wait no more than "+timeOutInSeconds+"s for loading icon display, wait "+(i+1)+"s");
			}
		}
		return isPresent;
	}

 

/**
     * Wait until the element not present with customized timeout
     * @param driver
     * @param locator
     * @param errorMessage
	 * @return
	 */
	public Boolean waitUntilElementNotPresent(WebDriver driver,final By locator, long timeOutInSeconds) {
		Boolean isPresent = true;
		for(int i=0;i<timeOutInSeconds;i++){
			isPresent=SeleniumUtil.isElementPresent(driver,locator);
			if(false==isPresent){
				break;
			}
			else{
				SeleniumUtil.sleep(1);
				System.out.println("Wait no more than "+timeOutInSeconds+"s for loading icon disappear, wait "+(i+1)+"s");
			}
		}
		return isPresent;
	}

 

public void waitForLoadingDoneInNewWebPage(WebDriver driver){
		By locator=By.cssSelector("div.x-mask-msg");
		Boolean isPresent = this.waitUntilElementPresent(driver, locator, 10);
		if(true==isPresent){
System.out.println("Loading icon display in new web page"); System.out.println("Wait for loading icon disappear in new web page"); Boolean stillPresent = this.waitUntilElementNotPresent(driver, locator, 120); if(false==stillPresent){ System.out.println("Loading icon disappear in new web page."); } } else{ System.out.println("Loading icon does'nt display in new web page."); } }

 

转载于:https://www.cnblogs.com/MasterMonkInTemple/p/4535849.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值