1.jdk版本(jdk11)
2.检查->元素->查看输入框Id
3.代码
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.edge.EdgeDriver;
import org.openqa.selenium.edge.EdgeOptions;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;import java.time.Duration;public class AutoLoginOA {public static void main(String[] args) {EdgeOptions options = new EdgeOptions();options.addArguments("start-maximized"); // 确保浏览器最大化WebDriver driver = new EdgeDriver(options);// 打开一个页面driver.get("http://网页地址/index.html");//等待五秒,确保界面元素加载完整WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(5));//loginid输入框IdWebElement usernameInput = wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("loginid")));// 填写用户名usernameInput.sendKeys("账户"); // 这里填入你的账号// 等待密码输入框可见WebElement passwordInput = wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("userpassword")));// 填写密码passwordInput.sendKeys("密码"); // 这里填入你的密码// 等待登录按钮可见WebElement loginButtonByClassName = wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("submit")));// 点击登录按钮loginButtonByClassName.click();}
}