摘要: http://www.cnblogs.com/mosson/p/5828433.html match、search、findall、group(s) 区别 1 2 3 4 5 import re # match findall经常用 # re.match() #从开头匹配,没有匹配到对象就返回NON 阅读全文
posted @ 2016-09-01 10:52 漂浮的心 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 正则本身就是一门语言: 正则表达式使用单个字符串来描述、匹配一系列符合某个句法规则的字符串,在文本处理方面功能非常强大,也经常用作爬虫,来爬取特定内容,Python本身不支持正则,但是通过导入re模块,Python也能用正则表达式,下面就来讲一下python正则表达式的用法。 下图列出了Python 阅读全文
posted @ 2016-09-01 10:50 漂浮的心 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Everyone makes mistakes, but you cannot ignore all mistakes. Some of them can prove to be very expensive.During testing of an application/product, a t 阅读全文
posted @ 2016-08-26 16:30 漂浮的心 阅读(188) 评论(0) 推荐(0) 编辑
摘要: At times you encounter a use case where you need to run a Jenkins job remotely from another Jenkins instance. Well, there is a way to achieve this by 阅读全文
posted @ 2016-08-26 16:22 漂浮的心 阅读(593) 评论(0) 推荐(0) 编辑
摘要: Sometimes you have multiple jobs with a Job pipeline, and you need to pass variables from the upstream jobs to the downstream jobs, how to do that? Jo 阅读全文
posted @ 2016-08-24 09:11 漂浮的心 阅读(229) 评论(0) 推荐(0) 编辑
摘要: ls 命令是linux下最常用的命令。ls命令就是list的缩写缺省下ls用来打印出当前目录的清单如果ls指定其他目录那么就会显示指定目录里的文 件及文件夹清单。 通过ls 命令不仅可以查看linux文件夹包含的文件而且可以查看文件权限(包括目录、文件夹、文件权限)查看目录信息等等。ls  阅读全文
posted @ 2016-08-11 14:44 漂浮的心 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 前 一天学习了 at 命令是针对仅运行一次的任务,循环运行的例行性计划任务,linux系统则是由 cron (crond) 这个系统服务来控制的。 Linux 系统上面原本就有非常多的计划性工作,因此这个系统服务是默认启动的。另外, 由于使用者自己也可以设置计划任务,所以, Linux 系统 也提供 阅读全文
posted @ 2016-08-11 14:43 漂浮的心 阅读(105) 评论(0) 推荐(0) 编辑
摘要: (Old) https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol (New) https://w3c.github.io/webdriver/webdriver-spec.html 阅读全文
posted @ 2016-08-11 11:14 漂浮的心 阅读(96) 评论(0) 推荐(0) 编辑
摘要: Another FAQ: https://github.com/SeleniumHQ/selenium/wiki/Frequently-Asked-Questions 8.1. How to use ChromeDriver ? Download the latest chromedriver fr 阅读全文
posted @ 2016-08-10 16:04 漂浮的心 阅读(81) 评论(0) 推荐(0) 编辑
摘要: This chapter cover all the interfaces of Selenium WebDriver. Recommended Import Style The API definitions in this chapter shows the absolute location 阅读全文
posted @ 2016-08-10 16:03 漂浮的心 阅读(541) 评论(0) 推荐(0) 编辑