调整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() {
|
||||
@ -59,11 +54,14 @@ public class WebClient {
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
static boolean headless = false;
|
||||
public static void setHeadless(boolean headless){
|
||||
|
||||
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");
|
||||
|
Loading…
Reference in New Issue
Block a user