Skip to content

Commit

Permalink
[grid] Adding ability to discover and start Edge (both chromium-based…
Browse files Browse the repository at this point in the history
… and legacy)

There is a problem: they have same browser name and it's not obvious
how to distinguish them without giving different names
  • Loading branch information
barancev committed Sep 26, 2019
1 parent 90dd53c commit 2ee6b64
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,14 @@
// under the License.
package org.openqa.selenium.edge;

import com.google.auto.service.AutoService;

import org.openqa.selenium.Capabilities;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.WebDriverInfo;
import org.openqa.selenium.remote.BrowserType;

@AutoService(WebDriverInfo.class)
public class ChromiumEdgeDriverInfo extends EdgeDriverInfo {

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,13 @@
// under the License.
package org.openqa.selenium.edge.edgehtml;

import com.google.auto.service.AutoService;

import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.WebDriverInfo;
import org.openqa.selenium.edge.EdgeDriverInfo;

@AutoService(WebDriverInfo.class)
public class EdgeHtmlDriverInfo extends EdgeDriverInfo {

@Override
Expand Down

0 comments on commit 2ee6b64

Please sign in to comment.