使用C#在WebDriver中打开新窗口

时间:2012-11-06 04:34:26

标签: webdriver selenium-webdriver

编辑4:

enter image description here 编辑3 enter image description here

编辑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();

//打开一个新窗口

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

2 个答案:

答案 0 :(得分: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绑定,则可以访问WebDriver.Support.dll程序集中的PopupWindowFinder类,该程序集使用与定位弹出窗口非常相似的方法。您可能会发现该课程完全符合您的需求,并且无需修改即可使用。

答案 1 :(得分: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);