自己慢慢积累。
发布时间:2016-04-16 22:46:17
修改chrome的配置,使浏览器不在出现“--ignore-certificate-errors”的提示option = webdriver.ChromeOptions() option.add_argument('test-type')web = webdriver.Chrome(chrome_options=option)web.get("http://www.51job.com/")转自:http://blog.csdn.net/xiecj_2006/article/details/43086731.........【阅读全文】
发布时间:2016-04-16 18:09:51
import timeprint (time.strftime('%Y-%m-%d %H:%M:%S'))上面这行其实就是下面这行的简写,因为strftime方法第二个参数默认就是time.localtimeprint (time.strftime('%Y-%m-%d %H:%M:%S',time.localtime()))附上strftime的帮助>>> help(time.strftime)Help on built-in function strftime in module time:strf.........【阅读全文】
发布时间:2016-04-12 23:40:38
转自:http://www.cnblogs.com/xuxm2007/archive/2010/08/04/1792463.htmlpython中if __name__ == '__main__': 的解析当你打开一个.py文件时,经常会在代码的最下面看到if __name__ == '__main__':,现在就来介 绍一下它的作用. 模块是对象,并且所有的模块.........【阅读全文】
发布时间:2016-03-27 23:46:22
根据教材学,敲完代码:点击(此处)折叠或打开from selenium import webdriverbrowser = webdriver.Chrome()browser.get("http://www.baidu.com")browser.find_element_by_id("kw").send_keys("selenium")browser.find_element_by_id(".........【阅读全文】
发布时间:2016-03-25 18:21:33
1、安装python 直接官网下载python包,安装。3.52、下载selenium 安装包 https://pypi.python.org/pypi/selenium 例如: selenium-2.53.1.tar.gz) 3、解压 selenium-2.53.1.tar.gz 并进入到文件夹内,执行: python setup.py install.........【阅读全文】