等待Selenium 2 WebDriver完成Ajax调用 [英] Wait for an Ajax call to complete with Selenium 2 WebDriver

查看:108
本文介绍了等待Selenium 2 WebDriver完成Ajax调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Selenium 2 WebDriver来测试使用AJAX的UI。

I'm using Selenium 2 WebDriver to test an UI which uses AJAX.

有没有一种方法可以使驱动程序等待Ajax请求的内容将会完成。

Is there a way to make the driver to wait for a bit that the Ajax request will complete.

基本上我有这个:

d.FindElement(By.XPath("//div[8]/div[3]/div/button")).Click();
// This click trigger an ajax request which will fill the below ID with content.
// So I need to make it wait for a bit.

Assert.IsNotEmpty(d.FindElement(By.Id("Hobbies")).Text);


推荐答案

var wait = new WebDriverWait(d, TimeSpan.FromSeconds(5));
var element = wait.Until(driver => driver.FindElement(By.Id("Hobbies")));

这篇关于等待Selenium 2 WebDriver完成Ajax调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆