Tabnine Logo
WebDriver.getWindowHandles
Code IndexAdd Tabnine to your IDE (free)

How to use
getWindowHandles
method
in
org.openqa.selenium.WebDriver

Best Java code snippets using org.openqa.selenium.WebDriver.getWindowHandles (Showing top 20 results out of 567)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew ArrayList()
  • Codota Iconnew LinkedList()
  • Smart code suggestions by Tabnine
}
origin: selenide/selenide

@Override
public WebDriver apply(WebDriver driver) {
 try {
  List<String> windowHandles = new ArrayList<>(driver.getWindowHandles());
  return driver.switchTo().window(windowHandles.get(index));
 } catch (IndexOutOfBoundsException windowWithIndexNotFound) {
  return null;
 }
}
origin: selenide/selenide

private void closeNewWindows(WebDriver webDriver, String currentWindowHandle, Set<String> currentWindows) {
 Set<String> windowHandles = webDriver.getWindowHandles();
 if (windowHandles.size() != currentWindows.size()) {
  Set<String> newWindows = new HashSet<>(windowHandles);
  newWindows.removeAll(currentWindows);
  log.info("File has been opened in a new window, let's close " + newWindows.size() + " new windows");
  for (String newWindow : newWindows) {
   log.info("  Let's close " + newWindow);
   try {
    webDriver.switchTo().window(newWindow);
    webDriver.close();
   }
   catch (NoSuchWindowException windowHasBeenClosedMeanwhile) {
    log.info("  Failed to close " + newWindow + ": " + Cleanup.of.webdriverExceptionMessage(windowHasBeenClosedMeanwhile));
   }
   catch (Exception e) {
    log.warning("  Failed to close " + newWindow + ": " + e);
   }
  }
  webDriver.switchTo().window(currentWindowHandle);
 }
}
origin: selenide/selenide

/**
 * Switch to window/tab by name/handle/title except some windows handles
 * @param title title of window/tab
 */
protected static WebDriver windowByTitle(WebDriver driver, String title) {
 Set<String> windowHandles = driver.getWindowHandles();
 for (String windowHandle : windowHandles) {
  driver.switchTo().window(windowHandle);
  if (title.equals(driver.getTitle())) {
   return driver;
  }
 }
 throw new NoSuchWindowException("Window with title not found: " + title);
}
origin: selenide/selenide

private File clickAndInterceptFileByProxyServer(WebElementSource anyClickableElement, WebElement clickable,
                    SelenideProxyServer proxyServer, long timeout) throws FileNotFoundException {
 Config config = anyClickableElement.driver().config();
 WebDriver webDriver = anyClickableElement.driver().getWebDriver();
 String currentWindowHandle = webDriver.getWindowHandle();
 Set<String> currentWindows = webDriver.getWindowHandles();
 FileDownloadFilter filter = proxyServer.responseFilter("download");
 filter.activate();
 try {
  clickable.click();
  waiter.wait(filter, new HasDownloads(), timeout, config.pollingInterval());
  return firstDownloadedFile(anyClickableElement, filter, timeout);
 }
 finally {
  filter.deactivate();
  closeNewWindows(webDriver, currentWindowHandle, currentWindows);
 }
}
origin: TEAMMATES/teammates

/**
 * Switches to new browser window for browsing.
 */
public void switchToNewWindow() {
  String curWin = driver.getWindowHandle();
  for (String handle : driver.getWindowHandles()) {
    if (!handle.equals(curWin) && !windowHandles.contains(curWin)) {
      windowHandles.push(curWin);
      driver.switchTo().window(handle);
      break;
    }
  }
}
origin: com.wso2telco.test/uitest-framework

@Override
public Set<String> getWindowHandles() {
  // TODO Auto-generated method stub
  return driver.getWindowHandles();
}
origin: ru.stqa.selenium/webdriver-factory

 @Override
 public boolean isAlive(WebDriver driver) {
  try {
   return driver.getWindowHandles().size() > 0;
  } catch (UnhandledAlertException ex) {
   return true;
  } catch (WebDriverException ex) {
   return false;
  }
 }
}
origin: io.selendroid/selendroid-client

 public Set<String> call() throws Exception {
  Set<String> handles = driver.getWindowHandles();
  if (handles.size() == count) {
   return handles;
  }
  return null;
 }
};
origin: stackoverflow.com

 // wait for a new window and switch to it
driver.switchTo().window(wait.until(new ExpectedCondition<String>() {
  @Override
  public String apply(WebDriver drv) {
    for (String handle : drv.getWindowHandles()){
      if (!handle.equals(mainHandle))
        return handle;
    }
    return null;
  }
}));
origin: stackoverflow.com

 public static boolean selectWindow(WebDriver driver, String windowTitle){
  //Search ALL currently available windows
  for (String handle : driver.getWindowHandles()) {
    String newWindowTitle = driver.switchTo().window(handle).getTitle();
    if(newWindowTitle.equalsIgnoreCase(windowTitle))
      //if it was found break out of the wait
      return true;
  }
  return false;

}
origin: org.mazarineblue/MazarineBlue-WebDriver

void closeAllHandles() {
  for (WindowHandle handle : popups.values())
    closeHandle(handle);
  popups.clear();
  windowHandles = driver.getWindowHandles();
}
origin: org.mazarineblue/MazarineBlue-WebDriver

void closeHandle(String popupName) {
  WindowHandle handle = popups.get(popupName);
  closeHandle(handle);
  popups.remove(popupName);
  windowHandles = driver.getWindowHandles();
}
origin: stackoverflow.com

 WebDriver driver = new FirefoxDriver();
driver.get("http://stackoverflow.com");
WebElement element = driver.findElement(By.linkText("Stack Overflow"));
// set the target _blank on the link
((JavascriptExecutor)driver).executeScript("arguments[0].target='_blank';", element);
// click the link
element.click();
// set the context to the new window
driver.switchTo().window(driver.getWindowHandles().toArray()[1]);
origin: persado/stevia

@Override
public void switchToLatestWindow() {
  Iterator<String> itr = driver.getWindowHandles().iterator();
  String lastElement = null;
  while (itr.hasNext()) {
    lastElement = itr.next();
  }
  driver.switchTo().window(lastElement);
}
origin: stackoverflow.com

 WebDriver driver = new FirefoxDriver();
driver.get("http://stackoverflow.com");
// open a new window
((JavascriptExecutor)driver).executeScript("window.open(window.location.href, '_blank');");
// set the context to the new window
driver.switchTo().window(driver.getWindowHandles().toArray()[1]);
// click the link
driver.findElement(By.linkText("Stack Overflow")).click();
origin: org.jspringbot/jspringbot-selenium

public List<String> getWindowHandles() {
  List<String> handles = new ArrayList<String>(driver.getWindowHandles());
  LOG.keywordAppender() .appendArgument("Handles", handles);
  return handles;
}
origin: qaprosoft/carina

public void switchWindow() throws NoSuchWindowException {
  WebDriver drv = getDriver();
  Set<String> handles = drv.getWindowHandles();
  String current = drv.getWindowHandle();
  if (handles.size() > 1) {
    handles.remove(current);
  }
  String newTab = handles.iterator().next();
  drv.switchTo().window(newTab);
}
origin: net.serenity-bdd/core

public void close() {
  if (proxyInstanciated()) {
    //if there is only one window closing it means quitting the web driver
    if (getDriverInstance().getWindowHandles() != null && getDriverInstance().getWindowHandles().size() == 1){
      this.quit();
    } else{
      getDriverInstance().close();
    }
    webDriverFactory.shutdownFixtureServices();
  }
}
origin: tarun3kumar/seleniumtestsframework

public final void selectWindow() throws NotCurrentPageException {
  TestLogging.logWebStep(
      "select window, locator={\"" + getPopupWindowName() + "\"}", false);
  // selectWindow(getPopupWindowName());
  driver.switchTo().window((String)
      driver.getWindowHandles().toArray()[0]);
  waitForSeconds(1);
  // Check whether it's the expected page.
  assertCurrentPage(true);
}
origin: EnMasseProject/enmasse

public ConsoleWebPage clickOnDashboard(String namespace, AddressSpace addressSpace) throws Exception {
  openOpenshiftPage();
  clickOnShowAllProjects();
  selenium.clickOnItem(getProjectListItem(namespace), namespace);
  waitForRedirectToService();
  ProvisionedServiceItem serviceItem = getProvisionedServiceItem();
  serviceItem.collapseServiceItem();
  selenium.clickOnItem(serviceItem.getRedirectConsoleButton());
  Set<String> tabHandles = selenium.getDriver().getWindowHandles();
  selenium.getDriver().switchTo().window(tabHandles.toArray()[tabHandles.size() - 1].toString());
  return new ConsoleWebPage(selenium, addressApiClient, addressSpace);
}
org.openqa.seleniumWebDrivergetWindowHandles

Javadoc

Return a set of window handles which can be used to iterate over all open windows of this WebDriver instance by passing them to #switchTo(). Options#window()

Popular methods of WebDriver

  • findElement
    Find the first WebElement using the given method. This method is affected by the 'implicit wait' tim
  • get
    Load a new web page in the current browser window. This is done using an HTTP GET operation, and the
  • manage
    Gets the Option interface
  • quit
    Quits this driver, closing every associated window.
  • findElements
    Find all elements within the current page using the given mechanism. This method is affected by the
  • getCurrentUrl
    Get a string representing the current URL that the browser is looking at.
  • switchTo
    Send future commands to a different frame or window.
  • getPageSource
    Get the source of the last loaded page. If the page has been modified after loading (for example, by
  • getTitle
    The title of the current page.
  • navigate
    An abstraction allowing the driver to access the browser's history and to navigate to a given URL.
  • close
    Close the current window, quitting the browser if it's the last window currently open.
  • getWindowHandle
    Return an opaque handle to this window that uniquely identifies it within this driver instance. This
  • close,
  • getWindowHandle,
  • <init>,
  • Close,
  • find_element,
  • findelement,
  • load,
  • navigateTo,
  • toString

Popular in Java

  • Reactive rest calls using spring rest template
  • getSupportFragmentManager (FragmentActivity)
  • compareTo (BigDecimal)
  • addToBackStack (FragmentTransaction)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • Callable (java.util.concurrent)
    A task that returns a result and may throw an exception. Implementors define a single method with no
  • Top 17 Free Sublime Text Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now