常用操作

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

 

 

以上是关于常用操作的主要内容,如果未能解决你的问题,请参考以下文章

git中常用的操作命令有哪些?常用操作命令归纳

Hive常用函数(日期函数,取整函数,字符串操作函数,集合操作函数)

Python中常用的os操作

大白话说GIT常用操作,常用指令git操作大全

Linux操作系统与常用命令

Python常用操作符