常用操作
Posted wldan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常用操作相关的知识,希望对你有一定的参考价值。
操作Cookie
// Go to the correct domain driver.get("http://www.example.com"); // Now set the cookie. This one‘s valid for the entire domain Cookie cookie = new Cookie("key", "value"); driver.manage().addCookie(cookie); // And now output all the available cookies for the current URL Set<Cookie> allCookies = driver.manage().getCookies(); for (Cookie loadedCookie : allCookies) { System.out.println(String.format("%s -> %s", loadedCookie.getName(), loadedCookie.getValue())); }
谷歌浏览器启动配置
https://blog.csdn.net/bpz31456/article/details/80455708
启动参数
https://peter.sh/experiments/chromium-command-line-switches/
参考
https://sites.google.com/a/chromium.org/chromedriver/home
查看谷歌NetWork数据
https://blog.csdn.net/zhuyiquan/article/details/80148767
以上是关于常用操作的主要内容,如果未能解决你的问题,请参考以下文章