2012-02-08 3 views
21

Sono di fronte a un problema nell'automazione di un'applicazione Web utilizzando il driver Web di selenio.Come può conoscere il driver Web di selenium quando la nuova finestra è stata aperta e quindi riprendere l'esecuzione

La pagina Web ha un pulsante che quando viene premuto apre una nuova finestra. Quando uso il seguente codice, si getta OpenQA.Selenium.NoSuchWindowException: No window found

WebDriver.FindElement(By.Id("id of the button that opens new window")).Click(); 
//Switch to new window 
_WebDriver.SwitchTo().Window("new window name"); 
//Click on button present on the newly opened window 
_WebDriver.FindElement(By.Id("id of button present on newly opened window")).Click(); 

Per risolvere il problema di cui sopra aggiungo Thread.Sleep(50000); tra il pulsante clic e SwitchTo dichiarazioni.

WebDriver.FindElement(By.Id("id of the button that opens new window")).Click(); 
Thread.Sleep(50000); //wait 
//Switch to new window 
_WebDriver.SwitchTo().Window("new window name"); 
//Click on button present on the newly opened window 
_WebDriver.FindElement(By.Id("id of button present on newly opened window")).Click(); 

ha risolto il problema, ma io non voglio utilizzare l'istruzione Thread.Sleep(50000); perché se la finestra richiede più tempo per aprire, il codice può fallire e se la finestra si apre velocemente allora fa il test lento inutilmente.

C'è un modo per sapere quando la finestra è stata aperta e quindi il test può riprendere la sua esecuzione?

risposta

25

è necessario passare il controllo di finestra pop-up prima di fare qualsiasi operazione in esso. Usando questo puoi risolvere il tuo problema.

Prima di aprire la finestra popup, recuperare l'handle della finestra principale e salvarlo.

String mwh=driver.getWindowHandle();

Ora tenta di aprire la finestra a comparsa effettuando qualche azione:

driver.findElement(By.xpath("")).click(); 

Set s=driver.getWindowHandles(); //this method will gives you the handles of all opened windows 

Iterator ite=s.iterator(); 

while(ite.hasNext()) 
{ 
    String popupHandle=ite.next().toString(); 
    if(!popupHandle.contains(mwh)) 
    { 
     driver.switchTo().window(popupHandle); 
     /**/here you can perform operation in pop-up window** 
     //After finished your operation in pop-up just select the main window again 
     driver.switchTo().window(mwh); 
    } 
} 
+0

Grazie per la risposta. Funziona. – Ozone

+1

Ci può essere un caso in cui la nuova scheda è aperta ma gestita non ancora aggiunta all'istanza dell'unità. La mia soluzione è prima di fare clic sul numero di handle corrente e poi all'interno mentre il ciclo controlla se il conteggio è cambiato. Solo allora passa alla scheda appena aperta come questa finestra 'driver.switchTo(). (Gestisce [handles.count() - 1]);' dove 'handle' sono aggiornati ad ogni iterazione. – Edgar

9

Si potrebbe aspettare fino a quando l'operazione riesce per esempio, in Python:

from selenium.common.exceptions import NoSuchWindowException 
from selenium.webdriver.support.ui import WebDriverWait 

def found_window(name): 
    def predicate(driver): 
     try: driver.switch_to_window(name) 
     except NoSuchWindowException: 
      return False 
     else: 
      return True # found window 
    return predicate 

driver.find_element_by_id("id of the button that opens new window").click()   
WebDriverWait(driver, timeout=50).until(found_window("new window name")) 
WebDriverWait(driver, timeout=10).until(# wait until the button is available 
    lambda x: x.find_element_by_id("id of button present on newly opened window"))\ 
    .click() 
+0

Grazie per la risposta. – Ozone

1

ho finalmente trovato la risposta, ho usato il metodo seguito per passare alla nuova finestra,

public String switchwindow(String object, String data){ 
     try { 

     String winHandleBefore = driver.getWindowHandle(); 

     for(String winHandle : driver.getWindowHandles()){ 
      driver.switchTo().window(winHandle); 
     } 
     }catch(Exception e){ 
     return Constants.KEYWORD_FAIL+ "Unable to Switch Window" + e.getMessage(); 
     } 
     return Constants.KEYWORD_PASS; 
     } 

Per passare alla finestra padre, ho utilizzato il seguente codice,

public String switchwindowback(String object, String data){ 
      try { 
       String winHandleBefore = driver.getWindowHandle(); 
       driver.close(); 
       //Switch back to original browser (first window) 
       driver.switchTo().window(winHandleBefore); 
       //continue with original browser (first window) 
      }catch(Exception e){ 
      return Constants.KEYWORD_FAIL+ "Unable to Switch to main window" + e.getMessage(); 
      } 
      return Constants.KEYWORD_PASS; 
      } 

Penso che questo ti aiuterà a passare da una finestra all'altra.

1

Io lo uso per aspettare che la finestra sia aperta e funzioni per me.

codice C#:

public static void WaitUntilNewWindowIsOpened(this RemoteWebDriver driver, int expectedNumberOfWindows, int maxRetryCount = 100) 
    { 
     int returnValue; 
     bool boolReturnValue; 
     for (var i = 0; i < maxRetryCount; Thread.Sleep(100), i++) 
     { 
      returnValue = driver.WindowHandles.Count; 
      boolReturnValue = (returnValue == expectedNumberOfWindows ? true : false); 
      if (boolReturnValue) 
      { 
       return; 
      } 
     } 
     //try one last time to check for window 
     returnValue = driver.WindowHandles.Count; 
     boolReturnValue = (returnValue == expectedNumberOfWindows ? true : false); 
     if (!boolReturnValue) 
     { 
      throw new ApplicationException("New window did not open."); 
     } 
    } 

E poi io chiamo questo metodo nel codice

Extensions.WaitUntilNewWindowIsOpened(driver, 2);