调整WebClient代码
This commit is contained in:
parent
84c583ad38
commit
af9be86762
@ -6,7 +6,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class QQBotApplication {
|
||||
public static final String version="QQBot v.1.2.25";
|
||||
public static final String version="QQBot v.1.2.26";
|
||||
public static void main(String[] args) {
|
||||
System.out.println("version = " + version);
|
||||
SpringApplication.run(QQBotApplication.class, args);
|
||||
|
@ -13,14 +13,9 @@ import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
public class WebClient {
|
||||
private static WebClient client;
|
||||
|
||||
|
||||
public static WebClient getInstance() {
|
||||
if (client == null) {
|
||||
client = new WebClient();
|
||||
}
|
||||
return client;
|
||||
return new WebClient();
|
||||
}
|
||||
|
||||
public WebDriver getWebDriver() {
|
||||
@ -30,7 +25,7 @@ public class WebClient {
|
||||
private WebClient() {
|
||||
System.setProperty("webdriver.chrome.driver",
|
||||
ConfigTools.load(ConfigTools.CONFIG, "chrome", String.class));
|
||||
// System.setProperty("webdriver.chrome.whitelistedIps", "");
|
||||
// System.setProperty("webdriver.chrome.whitelistedIps", "");
|
||||
// java.util.logging.Logger.getLogger("org.openqa.selenium").setLevel(Level.OFF);
|
||||
}
|
||||
|
||||
@ -59,24 +54,27 @@ public class WebClient {
|
||||
}
|
||||
return list;
|
||||
}
|
||||
static boolean headless=false;
|
||||
public static void setHeadless(boolean headless){
|
||||
WebClient.headless=headless;
|
||||
|
||||
static boolean headless = false;
|
||||
|
||||
public void setHeadless(boolean headless) {
|
||||
WebClient.headless = headless;
|
||||
}
|
||||
public static ChromeOptions getOptions() {
|
||||
|
||||
public ChromeOptions getOptions() {
|
||||
ChromeOptions options = new ChromeOptions();
|
||||
// options.addArguments("--disable-gpu");
|
||||
// options.addArguments("blink-settings=imagesEnabled=false");
|
||||
// options.addArguments("--disable-gpu");
|
||||
// options.addArguments("blink-settings=imagesEnabled=false");
|
||||
String headless = RedisTools.get("chromedrive_headless");
|
||||
String proxy=RedisTools.get("chromedrive_proxy");
|
||||
if("true".equals(proxy)) {
|
||||
String proxy = RedisTools.get("chromedrive_proxy");
|
||||
if ("true".equals(proxy)) {
|
||||
options.addArguments("--proxy-server=http://127.0.0.1:7890");
|
||||
}
|
||||
if("true".equals(headless)||WebClient.headless) {
|
||||
if ("true".equals(headless) || WebClient.headless) {
|
||||
options.addArguments("--headless");
|
||||
}
|
||||
options.addArguments("--no-sandbox");
|
||||
// options.addArguments("--incognito");
|
||||
// options.addArguments("--incognito");
|
||||
options.addArguments("--disable-plugins");
|
||||
options.addArguments("--lang=zh-CN");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user