Skip to content

Commit

Permalink
Update BrowserType.java
Browse files Browse the repository at this point in the history
  • Loading branch information
youfanx committed May 24, 2024
1 parent 9a53523 commit 21a0681
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rxlib-x/src/main/java/org/rx/crawler/BrowserType.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@
@Getter
public enum BrowserType {
CHROME("chrome.exe", "chromedriver.exe"),
FIRE_FOX("firefox.exe", ""),
@Deprecated
IE("iexplore.exe", "IEDriverServer.exe");

private final String processName;
private final String driverName;
final String processName;
final String driverName;
}

0 comments on commit 21a0681

Please sign in to comment.