Web UI????????????????????????
?????xiaoli ???????[ 2017/1/22 11:10:42 ] ????????????????? WEB????
????Web????????????ò?????е?????????????????ζ????????????????????????????????????????web????????????cookie??????????п?????????????????????????????????????????????????????????£?
private static void getLogin(String url??String cookie??WebDriver driver){
driver.manage().timeouts().implicitlyWait(5?? TimeUnit.SECONDS);
driver.get(url); // ???????????β????????cookie
driver.manage().deleteAllCookies(); // ???cookie???????
Cookie ck = new Cookie("PHPSESSID"?? cookie); // ?????????????????????cookie
driver.manage().addCookie(ck); // webdriver???cookie
driver.get(url); // ???????????????????
//driver.manage().window().maximize(); //?????????
driver.manage().timeouts().implicitlyWait(5?? TimeUnit.SECONDS);;
Set<Cookie> cookies = driver.manage().getCookies();
System.out.println(String.format("Domain -> name -> value -> expiry -> path"));
for (Cookie c : cookies)
System.out.println(String.format("%s -> %s -> %s -> %s -> %s"?? c.getDomain()?? c.getName()?? c.getValue()??c.getExpiry()?? c.getPath()));
}
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11