Selenium+Python学习之一】的更多相关文章

学习Selenium+Python已经好几个月了,但越学发现不懂的东西越多. 感觉最大的问题还是在于基础不扎实,决定从头开始,每天坚持读代码,写代码. 相信量变一定能到质变!!! 2018/05/09 [来源:菜鸟教程](http://www.runoob.com/python3/python3-examples.html) class float([x]) Return a floating point number constructed from a number or string x.…
学习了一个月的selenium+python,终于学有所成,下面以一个简单的项目来总结学习所得. 1.         项目结构 在项目结构中,大家要注意到:每一个源文件夹中都要有一个__init__.py文件,确记,这是规定,不解析. 先简单解说一下项目结构: 1)         config源文件夹,这个主要存放一些配置文件,如里面的golobalparameter.py就是存放一些公共参数的,我这个文件里面主要把一些文件存放的路径写成了公共参数,这样子,要修改路径的时候直接打开这个文件就…
刚入门selenium+Python,实验成功之后,记录一下过程. 首先是在知乎上面看到一个关于selenium+python的示例,于是自己便尝试搭建环境上手实验. 按照作者的代码敲一遍之后执行,竟然报错了~ 代码如下: # coding=utf-8 from selenium import webdriver browser = webdriver.Firefox() browser.get("http://zhihu.com") browser.close() 然后运行,竟然报错…
2018/05/25 EC [EC](https://github.com/easonhan007/webdriver_guide/blob/master/34/expected_conditions.py.md) [@classmethod](http://www.runoob.com/python/python-func-classmethod.html) [Source code for selenium.webdriver.support.expected_conditions](htt…
2018/06/1-2018/06/4 参考资料: [菜鸟教程](http://www.runoob.com/python3/python3-examples.html) [Python解惑:True与False](https://foofish.net/python-true-false.html) [python里None 表示False吗?](https://www.zhihu.com/question/48707732) 学习过程中有下面一段简单的代码,但自己却还写不出精确的注释,需要把…
2018/05/31-2018/06/1 [官方文档](https://www.jetbrains.com/help/pycharm/set-up-a-git-repository.html) 通过pycharm commit代码时,报错:Can't finish Github sharing process. Successfully created project 'Python' on GitHub, but initial commit failed: unable to auto-de…
2018/05/29 [来源:菜鸟教程](http://www.runoob.com/python3/python3-examples.html) 运算符重载 https://segmentfault.com/a/1190000013456795 https://zhuanlan.zhihu.com/p/20584316 [这个解释比较通俗易懂](https://zhidao.baidu.com/question/518493416493800005.html) #No.1 class Vect…
2018/05/ 28 [来源:菜鸟教程](http://www.runoob.com/python3/python3-examples.html) 继续敲类相关的代码 #No.1 class people: name = '' age = 0 __weight = 0 def __init__(self, n, a, w): self.name = n self.age = a self.__weight = w def speak(self): print("%s 说:我 %d 岁.&quo…
2018/05/23 Python内置的@property装饰器 [@property](https://www.programiz.com/python-programming/property) [Decorator](https://wiki.python.org/moin/PythonDecorators#What_is_a_Decorator) [PythonDecoratorLibrary](https://wiki.python.org/moin/PythonDecoratorLi…
2018/05/22 函数作为返回值 [来源:廖雪峰的官方网站](https://www.liaoxuefeng.com/) #No.1 def lazy_sum(*args): def sum(): ax = 0 for n in args: ax = ax + n return ax return sum f = lazy_sum(1, 3, 5, 7, 9) print(f) x = f() print(x) resut: d:\fly\Python (master -> origin)…