2017年12月20日

selenium webdrive 默认打开浏览器设置

摘要: 一、打开cmd 1. cd C:\program files\mozilla firefox(Firefox安装目录) 2. 执行: firefox.exe -ProfileManager -no-remote 二、增加新的配置 在打开的窗口中(上图)选择创建配置文件,完事点击【启动Firefox】 阅读全文

posted @ 2017-12-20 16:06 fengZQ 阅读(2756) 评论(0) 推荐(0) 编辑

2017年12月12日

Linux scp 及CentOS scp 不输入密码

摘要: 一、scp 1. 命令格式 scp [参数] [原路径] [目标路径] 2. 命令参数 -p 保留原文件的修改时间,访问时间和访问权限。 -q 不显示传输进度条。 -r 递归复制整个目录。 3. 本地拷贝至远程主机 scp /filepath/filename root@远程主机IP:/存放位置 4 阅读全文

posted @ 2017-12-12 11:19 fengZQ 阅读(3468) 评论(0) 推荐(0) 编辑

2017年12月11日

Python 编程(小试水)

摘要: 一. Python 冒泡法排序def sequence(arrays=list()): def desc(): for i in range(1, len(arrays)): for j in range(len(arrays) - i): if arrays[j] arrays[j + 1]: ... 阅读全文

posted @ 2017-12-11 22:37 fengZQ 阅读(316) 评论(0) 推荐(0) 编辑

2017年11月8日

Linux 配置Jenkins

摘要: 一、安装包下载: 1. jdk-8u152-linux-x64.tar.gz下载: wget http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0/jdk-8u152-linux- 阅读全文

posted @ 2017-11-08 15:19 fengZQ 阅读(1030) 评论(0) 推荐(0) 编辑

导航