This question already has answers here:
How to open a new tab using Selenium WebDriver?
(29个答案)
5年前关闭。
我有一个执行上传的应用程序。我似乎无法弹出关闭文件系统的提示。它不会弄乱测试,它会一直在后台运行,但是却覆盖了我想看测试四分之一屏幕的奇数机会。因此,我认为解决此问题的方法是,将迫使其余测试在新选项卡中完成。我不知道该怎么做。
这是我的上传代码:
与此问题相关:Upload modal will not close after filepath is sent
稍后,您可以使用
(29个答案)
5年前关闭。
我有一个执行上传的应用程序。我似乎无法弹出关闭文件系统的提示。它不会弄乱测试,它会一直在后台运行,但是却覆盖了我想看测试四分之一屏幕的奇数机会。因此,我认为解决此问题的方法是,将迫使其余测试在新选项卡中完成。我不知道该怎么做。
这是我的上传代码:
var uploadPathLink = element(by.css('button.btn.btn-select'));
var path = require('path');
//the file to upload
fileToUpload,
//this is variable that inserts the path to find file to upload
absolutePath = path.resolve(__dirname, fileToUpload);
//inserts the path
uploadPathLink.sendKeys(absolutePath);
与此问题相关:Upload modal will not close after filepath is sent
最佳答案
要打开新选项卡,请传递通常使用键盘(CONTROL + T)进行的命令。这是它的一个样本-
element(by.tagName('html')).sendKeys(protractor.Key.chord(protractor.Key.CONTROL, "t")); //If you are using MAC then replace CONTROL with COMMAND
//element can be any element in your DOM
稍后,您可以使用
getWindowHandle()
切换到新选项卡。希望这可以帮助。09-18 10:29