- 博客(7)
- 收藏
- 关注
原创 vscode 配置 anaconda终端
在vscode 中找到user setting :在 file →perferences → settings。 找到 Integrated Terminal 中的 "terminal.integrated.shell.windows" 选择 Replace in Settings 。Anaconda Prompt 右键属性找到目标将这个替换到terminal.integ...
2018-09-07 12:05:47 9099 2
原创 切换hosts工具
Hosts:是一个系统文件,主要作用是定义IP地址和主机名的映射关系,就是将域名网址与其对应的IP地址建立一个关联关系。当浏览网页时,系统从hosts中查找ip及对应的域名。找到则打开,否则dns解析。工具:SwitchHosts可以用来切换host,非常方便。...
2018-09-05 14:50:14 237
原创 python+selenium学习记录五
unittest单元测试框架 unittest框架为Python语言自带的单元测试框架,Python 2.1及以后的版本已将unittest作为一个标准模块放入到Python开发 包中。1.Test Case 一个Test Case 就是一个测试用例,一个完整的测试单元。unittest会自动搜索以test开头的测试方法。2. Test Suit 许多测试用例的集合,可以和在一起测试...
2018-07-07 16:51:27 147
原创 python+selenium学习记录四
1.表单切换 switch_to.frame() 可以取表单的id或name属性定位。2.窗口切换 switch_to.window() driver.current_window_handle 获得当前窗口句柄 driver.window_handles 所有窗口句柄3.警告框处理 switch_to_alert()方法定位到alert 、confirm、prompt。 ...
2018-07-07 13:44:24 163
原创 python+selenium学习记录三
1.鼠标事件 from selenium.webdriver import ActionChains 导入提供鼠标操作的ActionChains 类context_click( ) 右击double_click( ) 双击move_to_element( ) 鼠标悬停drag_and_drop( ) 拖动perform( ) 执行行为 right_click=d...
2018-07-07 12:58:51 159
原创 python+selenium学习记录二
1.八种定位元素id定位:find_element_by_id("kw")name定位: find_element_by_name("wd")class定位:find_element_by_class_name("bg_class")tag定位:find_element_by_tag_name("input")link定位:find_element_by_link_text("贴吧")partia...
2018-07-07 12:02:31 143
原创 python+selenium学习记录一
1.搭建环境下载python: https://www.python.org/downloads/ ,勾选python到path,安装完打开cmd,输入python,能看到版本号说明正确安装。下载selenium:https://pypi.python.org/pypi/selenium#downloads,离线安装,解压压缩包,将解压文件放在python\lib\site-packages下,进...
2018-07-07 10:53:45 311
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人