Selenium WebDriver(別名Selenium 2)を使用して既存のFirefoxブラウザーで新しいタブを開く方法は?
Selenium WebDriver(別名Selenium 2)を使用して既存のFirefoxブラウザーで新しいタブを開く方法は?
回答:
以下のコードはリンクを新しいタブで開きます。
String selectLinkOpeninNewTab = Keys.chord(Keys.CONTROL,Keys.RETURN);
driver.findElement(By.linkText("urlLink")).sendKeys(selectLinkOpeninNewTab);
以下のコードは空の新しいタブを開きます。
String selectLinkOpeninNewTab = Keys.chord(Keys.CONTROL,"t");
driver.findElement(By.linkText("urlLink")).sendKeys(selectLinkOpeninNewTab);
window.open()
、多くのプラットフォーム/ブラウザーで機能することが期待できます。
Ruby / Python / C#バインディング(Selenium 2.33.0)で答えを探している人のために。
送信する実際のキーはOSによって異なることに注意してください。たとえば、MacではのCOMMAND + t
代わりにを使用しCONTROL + t
ます。
ルビー
require 'selenium-webdriver'
driver = Selenium::WebDriver.for :firefox
driver.get('http://stackoverflow.com/')
body = driver.find_element(:tag_name => 'body')
body.send_keys(:control, 't')
driver.quit
パイソン
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Firefox()
driver.get("http://stackoverflow.com/")
body = driver.find_element_by_tag_name("body")
body.send_keys(Keys.CONTROL + 't')
driver.close()
C#
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
namespace StackOverflowTests {
class OpenNewTab {
static void Main(string[] args) {
IWebDriver driver = new FirefoxDriver();
driver.Navigate().GoToUrl("http://stackoverflow.com/");
IWebElement body = driver.FindElement(By.TagName("body"));
body.SendKeys(Keys.Control + 't');
driver.Quit();
}
}
}
driver.switchTo().window(windowName);
、タブやウィンドウにアクセスするだけで済みます。もちろん、ウィンドウ名を通常どおり追跡して、ウィンドウ名を切り替えられるようにする必要があります。
ActionChains(driver).key_down(Keys.CONTROL).click(element_to_be_clicked).key_up(Keys.CONTROL).perform()
。ActionChainsはから輸入されますselenium.webdriver.common.action_chains
。
なぜこれをしませんか
driver.ExecuteScript("window.open('your url','_blank');");
driver.ExecuteScript("window.open('about:blank','_blank');");
JavascriptExecutorを使用して新しいタブを開くには、
((JavascriptExecutor) driver).executeScript("window.open()");
ArrayList<String> tabs = new ArrayList<String>(driver.getWindowHandles());
driver.switchTo().window(tabs.get(1));
インデックスに従ってタブを制御します:
driver.switchTo().window(tabs.get(1));
メインタブのドライバーコントロール:
driver.switchTo().window(tabs.get(0));
driver.switchTo().window(tabs.get(1)); driver.get("https://www.stackoverflow.com"); Thread.sleep(2000); driver.switchTo().window(tabs.get(2)); driver.get("https://www.flipkart.com"); Thread.sleep(2000); driver.close(); driver.switchTo().window(tabs.get(1)); Thread.sleep(2000); driver.close(); driver.switchTo().window(tabs.get(0));
、私はこれを試しましたが、配列が範囲外の例外になります、解決策がわかっている場合はお知らせください。
driver.switchTo().window(tabs.get(2));
、これは正常に機能します((JavascriptExecutor) driver).executeScript("window.open('https://www.stackoverflow.com','_blank');"); Thread.sleep(3000); ((JavascriptExecutor) driver).executeScript("window.open('https://www.flipkart.com','_blank');");
が、ウィンドウに切り替えるコントロールはありません。
Chrome Driverで新しいウィンドウを開きます。
//The script that will will open a new blank window
//If you want to open a link new tab, replace 'about:blank' with a link
String a = "window.open('about:blank','_blank');";
((JavascriptExecutor)driver).executeScript(a);
Selenium WebDriverでJavaを使用して次のコードを使用できます。
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL + "t");
JavaScriptを使用して:
WebDriver driver = new FirefoxDriver();//FF or any other Driver
JavascriptExecutor jse = (JavascriptExecutor)driver;
jse.executeScript("window.open()");
新しいタブを開いた後、そのタブに切り替える必要があります:
ArrayList<String> tabs = new ArrayList<String>(driver.getWindowHandles());
driver.switchTo().window(tabs.get(1));
WebDriverでタブを開くことができるようになりました:
browser = Selenium::WebDriver.for :chrome
new_tab = browser.manage.new_window
新しいタブを開きます。ウィンドウを開くことは実際には非標準のケースになっています:
browser.manage.new_window(:window)
タブまたはウィンドウは自動的にフォーカスされません。それに切り替えるには:
browser.switch_to.window new_tab
Selenium WebDriverを使用して既存のChromeブラウザーで新しいタブを開くには、次のコードを使用できます。
driver.FindElement(By.CssSelector("body")).SendKeys(Keys.Control + "t");
string newTabInstance = driver.WindowHandles[driver.WindowHandles.Count-1].ToString();
driver.SwitchTo().Window(newTabInstance);
driver.Navigate().GoToUrl(url);
しばらくChromeで新しいタブを開けませんでした。でもdriver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL + "t");
私のために働いていませんでした。
セレンがドライバーに焦点を当てているだけでは不十分であることがわかりました。Windowsも前面にウィンドウを配置する必要があります。
私の解決策は、ウィンドウを前面に表示してコマンドを実行するクロムのアラートを呼び出すことでした。サンプルコード:
((JavascriptExecutor)driver).executeScript("alert('Test')");
driver.switchTo().alert().accept();
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL + "t");
JavaおよびFirefox 44.0.2でSelenium 2.52.0を使用しています。残念ながら、上記の解決策はどれもうまくいきませんでした。問題は、driver.getWindowHandles()を呼び出した場合、常に1つの単一のハンドルを取得することです。Firefoxは単一のプロセスであり、各タブは個別のプロセスではないため、これはどういうわけか私には理にかなっています。しかし、多分私は間違っています。とにかく私は自分の解決策を書こうとします:
// open a new tab
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL + "t");
//url to open in a new tab
String urlToOpen = "https://url_to_open_in_a_new_tab";
Iterator<String> windowIterator = driver.getWindowHandles()
.iterator();
//I always get handlesSize == 1, regardless how many tabs I have
int handlesSize = driver.getWindowHandles().size();
//I had to grab the original handle
String originalHandle = driver.getWindowHandle();
driver.navigate().to(urlToOpen);
Actions action = new Actions(driver);
// close the newly opened tab
action.keyDown(Keys.CONTROL).sendKeys("w").perform();
// switch back to original
action.keyDown(Keys.CONTROL).sendKeys("1").perform();
//and switch back to the original handle. I am not sure why, but
//it just did not work without this, like it has lost the focus
driver.switchTo().window(originalHandle);
Ctrl + tの組み合わせを使用して新しいタブを開き、Ctrl + wを使用して閉じ、元のタブに戻しました。Ctrl+ 1(最初のタブ)を使用しました。私の解決策は完璧ではなく、さらには良いものであることを認識しています。また、ドライバーのswitchTo呼び出しで切り替えたいのですが、書いたように、ハンドルが1つしかなかったため不可能でした。多分これは同じ状況の誰かに役立つでしょう。
クロムのJavaでSelenium WebDriverを使用して新しいタブを開く方法は?
ChromeOptions options = new ChromeOptions();
options.addArguments("--disable-extensions");
driver = new ChromeDriver(options);
driver.manage().window().maximize();
driver.navigate().to("https://google.com");
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_T);
robot.keyRelease(KeyEvent.VK_CONTROL);
robot.keyRelease(KeyEvent.VK_T);
上記のコードは最初の拡張機能を無効にし、ロボットクラスを使用して新しいタブが開きます。
このコード行は、セレンWebドライバーを使用して新しいブラウザータブを開きます
((JavascriptExecutor)getDriver()).executeScript("window.open()");
新しいタブを開く方法、より重要なこととして、新しいタブでどのように操作しますか?Webdriverは各タブに新しいWindowHandleを追加せず、最初のタブを制御するだけです。そのため、新しいタブ(Control +タブ番号)を選択した後、ドライバーに.DefaultContent()を設定して、表示するタブを作業対象のタブとして定義します。
Visual Basic
Dim driver = New WebDriver("Firefox", BaseUrl)
' Open new tab - send Control T
Dim body As IWebElement = driver.FindElement(By.TagName("body"))
body.SendKeys(Keys.Control + "t")
' Go to a URL in that tab
driver.GoToUrl("YourURL")
' Assuming you have m tabs open, go to tab n by sending Control + n
body.SendKeys(Keys.Control + n.ToString())
' Now set the visible tab as the drivers default content.
driver.SwitchTo().DefaultContent()
Actions at=new Actions(wd);
at.moveToElement(we);
at.contextClick(we).sendKeys(Keys.ARROW_DOWN).sendKeys(Keys.ENTER).build().perform();
この完全な例を確認して、複数のタブを開いてタブを切り替える方法を理解し、最後にすべてのタブを閉じてください
public class Tabs {
WebDriver driver;
Robot rb;
@BeforeTest
public void setup() throws Exception {
System.setProperty("webdriver.chrome.driver", "C:\\Users\\Anuja.AnujaPC\\Downloads\\chromedriver_win32\\chromedriver.exe");
WebDriver driver=new ChromeDriver();
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(5, TimeUnit.SECONDS);
driver.get("http://qaautomated.com");
}
@Test
public void openTab() {
//Open tab 2 using CTRL + t keys.
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL +"t");
//Open URL In 2nd tab.
driver.get("http://www.qaautomated.com/p/contact.html");
//Call switchToTab() method to switch to 1st tab
switchToTab();
//Call switchToTab() method to switch to 2nd tab.
switchToTab();
}
public void switchToTab() {
//Switching between tabs using CTRL + tab keys.
driver.findElement(By.cssSelector("body")).sendKeys(Keys.CONTROL +"\t");
//Switch to current selected tab's content.
driver.switchTo().defaultContent();
}
@AfterTest
public void closeTabs() throws AWTException {
//Used Robot class to perform ALT + SPACE + 'c' keypress event.
rb =new Robot();
rb.keyPress(KeyEvent.VK_ALT);
rb.keyPress(KeyEvent.VK_SPACE);
rb.keyPress(KeyEvent.VK_C);
} }
https://bugs.chromium.org/p/chromedriver/issues/detail?id=1465のバグのためが原因で、webdriver.switchToが実際にタブを切り替えても、フォーカスは最初のタブに残ります。これを確認するには、switchWindowの後にdriver.getを実行し、2番目のタブが実際には元のタブではなく新しいURLに移動していることを確認します。
今のところ回避策は@ yardening2が提案したものです。jsを使用してアラートを開き、webdriverを使用してそれを受け入れます。
このコードは私のために機能します(selenium 3.8.1、chromedriver = 2.34.522940、chrome = 63.0):
public void openNewTabInChrome() {
driver.get("http://www.google.com");
WebElement element = driver.findElement(By.linkText("Gmail"));
Actions actionOpenLinkInNewTab = new Actions(driver);
actionOpenLinkInNewTab.moveToElement(element)
.keyDown(Keys.CONTROL) // MacOS: Keys.COMMAND
.keyDown(Keys.SHIFT).click(element)
.keyUp(Keys.CONTROL).keyUp(Keys.SHIFT).perform();
ArrayList<String> tabs = new ArrayList(driver.getWindowHandles());
driver.switchTo().window(tabs.get(1));
driver.get("http://www.yahoo.com");
//driver.close();
}
質問:JavaでSelenium WebDriverを使用して新しいタブを開く方法は?
回答:リンクをクリックした後、新しいタブを開きます。
新しく開いたタブを処理する場合は、.switchTo()。window()コマンドを使用してタブを処理する必要があります。
特定のタブに切り替えてから操作を実行し、親タブに切り替えます。
package test;
import java.util.ArrayList;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Tab_Handle {
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver", "geckodriver_path");
WebDriver driver = new FirefoxDriver();
driver.get("http://www.google.com");
// Store all currently open tabs in Available_tabs
ArrayList<String> Available_tabs = new ArrayList<String>(driver.getWindowHandles());
// Click on link to open in new tab
driver.findElement(By.id("Url_Link")).click();
// Switch newly open Tab
driver.switchTo().window(Available_tabs.get(1));
// Perform some operation on Newly open tab
// Close newly open tab after performing some operations.
driver.close();
// Switch to old(Parent) tab.
driver.switchTo().window(Available_tabs.get(0));
}
}
新しいタブを開きたい場合は、これを使用できます
((JavascriptExecutor) getDriver()).executeScript("window.open()");
新しいタブからリンクを開きたい場合は、これを使用できます
JavascriptExecutor:
public void openFromNewTab(WebElement element){
((JavascriptExecutor)getDriver()).executeScript("window.open('"+element.getAttribute("href")+"','_blank');");
}
アクションあり:
WebElement element = driver.findElement(By.xpath("your_xpath"));
Actions actions = new Actions(driver);
actions.keyDown(Keys.LEFT_CONTROL)
.click(element)
.keyUp(Keys.LEFT_CONTROL)
.build()
.perform();
Selenium Webdriverを使用したブラウザーウィンドウの処理:
String winHandleBefore = driver.getWindowHandle();
for(String winHandle : driver.getWindowHandles()) // Switch to new opened window
{
driver.switchTo().window(winHandle);
}
driver.switchTo().window(winHandleBefore); // move to previously opened window