-1

我正在嘗試導航到其他窗口。但Firefox新標籤,而不是新窗口打開新頁面。我檢查複選框檢查並取消選中。如何打開新窗口而不是新標籤

System.setProperty("webdriver.firefox.bin", "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe"); 
    System.setProperty("webdriver.gecko.driver", "C:\\Selenium Purely\\geckodriver\\geckodriver.exe"); 
    WebDriver driver = new FirefoxDriver(); //Launches FireFox browser with blank URL 
    driver.get("http://the-internet.herokuapp.com/windows"); 

    Thread.sleep(4000); 

    String parentwindow = driver.getWindowHandle(); 

    System.out.println("Parent window handle is "+parentwindow); 
    System.out.println("Parent window title is "+driver.getTitle()); 

    driver.findElement(By.partialLinkText("Click Here")).click(); 

    Set <String> s1 = driver.getWindowHandles(); 

    Iterator <String> i1= s1.iterator(); 

    while (i1.hasNext()) 

      { 
       String childwindow = i1.next(); 

       System.out.println("Child window handle is "+childwindow); 
       System.out.println("Child window title is "+driver.getTitle()); 

       if(parentwindow != childwindow) 
       { 
        driver.switchTo().window(childwindow); 
        Thread.sleep(4000); 

       } 

      } 
+0

所以你想打開一個新窗口點擊這裏點擊? –

+0

是的。它是一個用於學習目的的免費網站。當我點擊點擊這裏,它不在新窗口中打開 - 並在新標籤中打開。手動地當我這樣做時,我可以在新窗口打開,因爲我已經設置了相應的屬性。但沒有解決。 – Jafar

+0

Selenium版本3.3.1 - Firefox 52 - – Jafar

回答

0

好,與硒工作,你不需要添加在你的代碼的Firefox的exe文件的絕對路徑,因爲它會在你的系統PATH變量添加。所以,你可以省略這一行:

System.setProperty("webdriver.firefox.bin", "C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe");

現在,爲了讓Firefox打開新窗口的URL中有做一些設置。至於你的問題而言How to open a new window instead of new tab這裏是工作的代碼在IE:

package demo; 


import java.util.Iterator; 
import java.util.Set; 
import org.openqa.selenium.By; 
import org.openqa.selenium.WebDriver; 
import org.openqa.selenium.chrome.ChromeDriver; 
import org.openqa.selenium.firefox.FirefoxDriver; 
import org.openqa.selenium.ie.InternetExplorerDriver; 


public class TestAnyURLMain { 

    public static void main(String[] args) throws InterruptedException { 


     System.setProperty("webdriver.ie.driver", "C:\\Utility\\BrowserDrivers\\IEDriverServer.exe"); 
     WebDriver driver = new InternetExplorerDriver(); 
     driver.manage().window().maximize(); 
     driver.get("http://the-internet.herokuapp.com/windows"); 
     Thread.sleep(4000); 
     String parentwindow = driver.getWindowHandle(); 

     System.out.println("Parent window handle is "+parentwindow); 
     System.out.println("Parent window title is "+driver.getTitle()); 

     driver.findElement(By.partialLinkText("Click Here")).click(); 

     Set <String> s1 = driver.getWindowHandles(); 

     Iterator <String> i1= s1.iterator(); 

     while (i1.hasNext()) 

     { 
      String childwindow = i1.next(); 

      System.out.println("Child window handle is "+childwindow); 
      System.out.println("Child window title is "+driver.getTitle()); 

      if(parentwindow != childwindow) 
      { 
       driver.switchTo().window(childwindow); 
       Thread.sleep(4000); 

      } 

     } 

    } 

} 

讓我知道如果這能幫助你。

+0

是的。在更新啓用保護模式後,相當完美的使用IE瀏覽器。現在,我正在嘗試與Firefox一樣。我添加了:System.setProperty(「webdriver.firefox.bin」,「C:\\ Program Files(x86)\\ Mozilla Firefox \\ firefox.exe」);以確保它拿起正確的配置文件,我也使用..即手動工作正常。不通過腳本。 – Jafar

+0

@Jafar這段代碼'System.setProperty(「webdriver.firefox.bin」,「C:\\ Program Files(x86)\\ Mozilla Firefox \\ firefox.exe」);'是用於舊版Mozila Firefox用戶。正如你使用壁虎省略這一行。 – DebanjanB

+0

開發 - 我剛剛添加那一塊作爲新標籤的開放不起作用。只是試驗和錯誤。但是,它並沒有幫助我。 – Jafar

相關問題