Package com.jetbrains.browserConnection

Examples of com.jetbrains.browserConnection.BrowserConnectionManager


  /**
   * Opens new tab in any already open Chrome-family browser, if none found - start any new Chrome-family browser
   */
  public static void openUrlInChromeFamilyBrowser(@NotNull final String url) {
    try {
      final BrowserConnectionManager connectionManager = BrowserConnectionManager.getInstance();
      final Client chromeClient = connectionManager.findClient(new Condition<Client>() {
        @Override
        public boolean value(final Client client) {
          final WebBrowser browser = connectionManager.getBrowser(client);
          return browser != null && browser.getFamily() == BrowserFamily.CHROME;
        }
      });

      if (chromeClient != null) {
View Full Code Here

TOP

Related Classes of com.jetbrains.browserConnection.BrowserConnectionManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.