[Selenium]等待元素出现之后再消失,界面上的lo

系统 1752 0

等待元素出现之后再消失,界面上的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."); } }

 

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


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论