我有一个网页项目,点击按钮导航到另一个页面。根据服务器中的数据,新页面可以是三个可能页面中的一个。 (其中2页的网址可能相同)
我有三个类使用PageObject模型在每个页面上表示预期的元素。
实际找到实际加载的页面的最佳方法是什么?是否存在OR类型的等待,我可以等待三个独特的元素并获得实际加载的元素?
答案 0 :(得分:0)
是的,可以检查是否存在唯一元素(标识页面),然后返回框架中的相应页面。
但是,测试应该知道下一个期望的页面,并且应该假设正确的页面已经加载并执行进一步的操作/断言。您甚至可以在此处设置断言以验证是否已加载正确的页面。如果加载了不同的页面,则测试最终会失败,因为断言会失败。 这样,测试变得更具可读性,并描述了应用程序的流程。
此外,始终建议为测试预先设置测试数据。通过这种方式,您可以了解服务器上可用的数据,并且测试将知道将呈现哪个页面。
答案 1 :(得分:0)
我有一个类似的问题,我需要检测登录是否适用于新用户(登录页面然后转到条款和条件页面而不是直接到主页)。
最初我只是等待然后测试了第二页,但这只是一种痛苦所以我想出了这个。
用这个来测试结果:
var whichScreen = waitForEitherElementText(By.CssSelector(HeaderCssUsing), "HOME SCREEN", "home", terms.getHeaderLocator(), terms.headerText, "terms", driver, MAX_STALE_RETRIES);
if(whichScreen.Item1 && whichScreen.Item2 == "terms")
{
terms.aggreeToTerms();
}
这个调用的方法是:
protected Tuple<bool, string> waitForEitherElementText(By locator1, string expectedText1, string return1Ident,
By locator2, string expectedText2, string return2Ident, IWebDriver driver, int retries)
{
var retryCount = 0;
string returnText = "";
WebDriverWait explicitWait = new WebDriverWait(driver, TimeSpan.FromSeconds(globalWaitTime));
driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(0.5));
while (retryCount < retries)
{
try
{
explicitWait.Until<bool>((d) =>
{
try
{
if (Equals(d.FindElement(locator1).Text, expectedText1)) { returnText = return1Ident; };
}
catch (NoSuchElementException)
{
if (Equals(d.FindElement(locator2).Text, expectedText2)) { returnText = return2Ident; };
}
return (returnText != "");
});
return Tuple.Create(true, returnText);
}
catch (StaleElementReferenceException e)
{
Console.Out.WriteLine(DateTime.UtcNow.ToLocalTime().ToString() +
":>>> -" + locator1.ToString() + " OR " + locator2.ToString() + "- <<< - " +
this.GetType().FullName + "." + System.Reflection.MethodBase.GetCurrentMethod().Name +
" : " + e.Message);
retryCount++;
}
}
return Tuple.Create(false,"");
}
显式等待直到使用布尔值,因此将循环整个等待时间(我有一个非常慢的测试服务器,因此我将其设置为60秒)。隐式等待设置为半秒,因此元素测试将每半秒尝试一次并循环,直到返回true或失败。 我使用一个元组,以便我可以检测到我在哪个屏幕上,并且在这种情况下同意条款&amp;条件然后让我回到我的正常页面路径