如何在chrome上打开新标签页。我需要从中获取一些数据,返回到我之前的选项卡并输入数据。我知道如何遍历选项卡,但我无法打开新选项卡。
Selenium版本:3.5.2
Chrome版:60
package Amazon;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.interactions.Actions;
public class VerifyAmazonSignInPage {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver", "C://Selenium jars/chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
driver.get("http://www.amazon.in");
driver.findElement(By.xpath("//span[text()='Hello. Sign in']")).click();
driver.findElement(By.id("ap_email")).sendKeys("seleniumoar1234@gmail.com");
driver.findElement(By.id("ap_password")).sendKeys("*****");
driver.findElement(By.id("signInSubmit")).click();
Actions act = new Actions(driver);
act.keyDown(Keys.CONTROL).sendKeys("t").keyUp(Keys.CONTROL).build().perform();
driver.get("http://www.gmail.com");
}
}
答案 0 :(得分:1)
我用于Action class
的Thumb规则是,仅用于模仿最终用户的鼠标操作。不要将它用于其他目的。
在您的情况下,您需要将密钥发送到浏览器,您可以使用WebDriver接口的任何实现来执行此操作。那么您如何打开新标签?
最简单的方法是在body元素上发送密钥以打开新标签 -
driver.findElement(By.tagName("body")).sendKeys(Keys.CONTROL + "t");
但是在某些情况下,这不起作用,所以我更喜欢JavascriptExecutor
,我已经写了post,因为它是与平台无关的解决方案。
((JavascriptExecutor) driver).executeScript("window.open('http://gmail.com/','_blank');");
请注意,打开新标签后,您必须处理switching tab,它不会自动运行。
答案 1 :(得分:0)
Action类是一个selenium类,只能用于自动化基于Web的应用程序。打开新选项卡是在webbrowser上执行的操作,它是一个独立的应用程序。可以使用java.awt包中的Robot类来完成它。