Python:GUI之tkinter学习笔记3事件绑定(转载自https://www.cnblogs.com/progor/p/8505599.html)
摘要:Python:GUI之tkinter学习笔记3事件绑定 相关内容: command bind protocol 首发时间:2018-03-04 19:26 command: command是控件中的一个参数,如果使得command=函数,那么点击控件的时候将会触发函数 能够定义command的常见控
阅读全文
configparse模块 | 文件配置 | Python (转载)
摘要:# configparser模块 # 配置文件解析 import configparser # 1.创建配置文件 config = configparser.ConfigParser() # 相当于一个空字典 config['DEFAULT'] = { 'men':'1', 'disk':'2',
阅读全文
selenium(webdriver)学习笔记5--处理windows security dialog,安全验证(转载)
摘要:今天测试遇到一个弹出框,不知道怎么处理,查了下资料,解决了,于是乎记录下来,以便日后参考。 多谢博客:http://m.blog.csdn.net/blog/lan0227/36384201 解决办法: 方法一:在URL里面直接加入用户名和密码: driver.get(“https://userna
阅读全文
python selenium 元素定位总结(转载)
摘要:https://www.cnblogs.com/yufeihlf/p/5717291.html#test9
阅读全文
python 中time模块详解
摘要:https://blog.csdn.net/you_are_my_dream/article/details/61616465
阅读全文
pycharm常用快捷键及设置(转载)
摘要:1、编辑(Editing) Ctrl + Space 基本的代码完成(类、方法、属性)Ctrl + Alt + Space 快速导入任意类Ctrl + Shift + Enter 语句完成Ctrl + P 参数信息(在方法中调用参数) Ctrl + Q 快速查看文档 F1 外部文档 Shift +
阅读全文
(转载)python re模块详解 正则表达式
摘要:https://www.cnblogs.com/tina-python/p/5508402.html
阅读全文