如何在 Selenium IDE 中使用多个窗口

问题描述 投票:0回答:1

我正在使用 Selenium IDE 来记录测试用例。在特定的测试用例中,我需要同时在两个窗口上工作,但 Selenium IDE 不会记录我何时打开新选项卡并对其进行操作。有人可以给我这方面的建议吗?

ide selenium selenium-ide
1个回答
2
投票

您可以按照此处的建议以编程方式尝试 如何使用 Selenium RC 关闭选项卡并打开新选项卡

您可以像这样打开另一个窗口(我猜是硒的弹出窗口)

selenium.openWindow("http://example.com/","dev");
selenium.selectWindow("dev");
selenium.open("/");

然后你切换黑白窗口。要回到原来的状态,你必须做

selenium.selectWindow(null);
© www.soinside.com 2019 - 2024. All rights reserved.