gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-02 02:10:22 24 4
gpt4 key购买 nike

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

//它打开一个新窗口

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

最佳答案

大多数人在处理 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 绑定(bind),您可以访问 PopupWindowFinder WebDriver.Support.dll 程序集中的类,它使用与定位弹出窗口非常相似的方法。您可能会发现该类完全符合您的需求,并且无需修改即可使用它。

关于webdriver - 使用 C# 在 WebDriver 中打开新窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13244448/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com