Selenium C# Open New Tab CTRL+T Not working with CHROME(Selenium C# 打开新选项卡 CTRL+T 不使用 CHROME)
问题描述
static void Main()
{
IWebDriver driver = new ChromeDriver();
driver.Navigate().GoToUrl("http://google.com");
IWebElement body = driver.FindElement(By.TagName("body"));
body.SendKeys(Keys.Control + "t");
}
这是我试图用来打开新标签的代码,但它不起作用,我没有收到任何错误,驱动程序打开谷歌,仅此而已....我搜索了很多,发现很多教程甚至视频,人们使用完全相同的代码并且它适用于他们,但对我来说它没有,我无法弄清楚......
This is the code that I am trying to use to open a new tab and its not working, I am not getting any errors nothing, the driver opens Google and thats all.... I have searched a lot and found many tutorials even videos where people are using the exact same code and it works for them, but for me it doesnt and I can't figure it out...
我尝试将 Keys.Shift + "t" 发送到搜索字段并且它有效,它在字段中写入大写 T
I tried sending Keys.Shift + "t" to the search field and it works, it writes a capital T in the field
我也试过
Actions act = new Actions(driver);
act.KeyDown(Keys.Control).SendKeys("t").Perform();
它仍然无法正常工作,但如果我将 Keys.Control 更改为 Keys.Shift 它会再次写入,似乎没有任何涉及 Keys.Control 的工作!
And it still does not work, but again if I change Keys.Control to Keys.Shift it writes, seems like nothing that involves Keys.Control is working!!
我尝试使用 IE 驱动程序运行代码,它在那里工作,它打开了新标签,但它没有在 Chrome 上打开新标签?
I have tried running the code with a IE Driver and it worked there, it opens new tab, but it does not open new tabs on Chrome?
推荐答案
感谢您的回答!我是用 JavaScript 做到的.
Thanks for the answers! I did it with JavaScript.
((IJavaScriptExecutor)driver).ExecuteScript("window.open();");
这篇关于Selenium C# 打开新选项卡 CTRL+T 不使用 CHROME的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Selenium C# 打开新选项卡 CTRL+T 不使用 CHROME
基础教程推荐
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 如果条件可以为空 2022-01-01
- 将数据集转换为列表 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
