2

编辑4:

在此处输入图像描述 编辑 3 在此处输入图像描述

编辑 2

    string currentWindow = driver.CurrentWindowHandle;

    driver.SwitchTo().Window("");
    string childTitle = driver.Title;

    driver.SwitchTo().Window(currentWindow);
    string parentTitle = driver.Title;

上面的代码为父窗口或子窗口提供了相同的标题。

编辑:

<a id="ctl00_ctl00_Features_ctl03_lnkPage" class="title" target="_blank" href="websiteaddress">Stay  Around</a>

如何验证打开的新窗口的标题,一旦我验证然后关闭打开的新窗口?

所以在我的页面中,我有一个链接并单击该链接,它会打开一个新窗口,现在我不确定如何验证该窗口的标题。

这是我到目前为止所做的。

GoToMysiteUrl();
IWebElement addtoList = driver.FindElement(By.XPath(_pageName));
addtoList.Click();

//它打开一个新窗口

现在我想将焦点切换到新窗口并验证标题并将新窗口关闭回上一个窗口。

4

2 回答 2

2

大多数人在处理 IE 中的弹出窗口时错过的部分是对元素的单击是异步的。也就是说,如果您.WindowHandles在单击后立即检查属性,您可能会失去竞争条件,因为您在 IE 有机会创建新窗口之前检查是否存在新窗口,并且驱动程序已经有机会注册它。

这是我用来执行相同操作的 C# 代码:

string foundHandle = null;
string originalWindowHandle = driver.CurrentWindowHandle;

// Get the list of existing window handles.
IList<string> existingHandles = driver.WindowHandles;
IWebElement addtoList = driver.FindElement(By.XPath(_pageName));
addtoList.Click();

// Use a timeout. Alternatively, you could use a WebDriverWait
// for this operation.
DateTime timeout = DateTime.Now.Add(TimeSpan.FromSeconds(5));
while(DateTime.Now < timeout)
{
    // This method uses LINQ, so it presupposes you are running on
    // .NET 3.5 or above. Alternatively, it's possible to do this
    // without LINQ, but the code is more verbose.
    IList<string> currentHandles = driver.WindowHandles;
    IList<string> differentHandles = currentHandles.Except(existingHandles).ToList();
    if (differentHandles.Count > 0)
    {
        // There will ordinarily only be one handle in this list,
        // so it should be safe to return the first one here.
        foundHandle = differentHandles[0];
        break;
    }

    // Sleep for a very short period of time to prevent starving the driver thread.
    System.Threading.Thread.Sleep(250);
}

if (string.IsNullOrEmpty(foundHandle))
{
    throw new Exception("didn't find popup window within timeout");
}

driver.SwitchToWindow(foundHandle);

// Do whatever verification on the popup window you need to, then...
driver.Close();

// And switch back to the original window handle.
driver.SwitchToWindow(originalWindowHandle);

顺便说一句,如果您使用的是 .NET 绑定,则可以访问PopupWindowFinderWebDriver.Support.dll 程序集中的一个类,它使用与定位弹出窗口非常相似的方法。您可能会发现该类完全符合您的需求,并且无需修改即可使用它。

于 2012-11-06T19:33:55.257 回答
0
GoToMysiteUrl();
IWebElement addtoList = driver.FindElement(By.XPath(_pageName));
addtoList.Click();

// 发布上述操作后,将打开一个新窗口,如问题中所述

// 获取主窗口的句柄

string  currentWindow = Driver.CurrentWindowHandle;

// 切换到新打开的窗口

Driver.SwitchTo().Window("Your Window Name");

// 在此处执行所需的操作/断言并关闭窗口

// 切换到主窗口

Driver.SwitchTo().Window(currentWindow);
于 2012-11-06T08:27:57.487 回答