java+selenium+chrome 自动登录
package com.test.Selenium_Lesson;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.Point;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.interactions.Actions;
public class LoginTest {
public static void main(String[] args) throws InterruptedException {
Thread.sleep(3000);
System.setProperty(
"webdriver.chrome.driver",
"C://Users//Administrator//AppData//Local//Google//Chrome//Application//chromedriver.exe");
WebDriver webDriver = new ChromeDriver();
webDriver.manage().window().maximize();
webDriver.manage().deleteAllCookies();