private RemoteWebDriver driver; public JdDownloader(){ // 加载chromedriver 是使用chorme的必要条件 System.setProperty("webdriver.chrome.driver","C:\\Users\\Administrator\\AppData\\Local\\Google\\Chrome\\Application\\chromedriver.exe"); // 添加chrome的配置信息 ChromeOptions chromeOptions = new ChromeOptions(); // 设置为无头模式 //chromeOptions.addArguments("--headless"); // 设置打开的窗口大小 非必要属性 chromeOptions.addArguments("--window-size=1920,1080"); // 使用配置信息 创建driver对象 driver = new ChromeDriver(chromeOptions); }
chorme驱动加载
最新推荐文章于 2024-09-22 20:39:35 发布