摘要:
1 Python 1.1 chm下载 1.2 目录介绍 1.3 Pip命令使用 Pip:python包安装和管理工具 a) 安装包 pip install selenium b) 卸载包 pip uninstall selenium c) 显示安装了哪些文件 pip show selenium 2 阅读全文
摘要:
一、Autoit 上传文件、 1.常用语法 - WinActivate("title") 聚焦到指定活动窗口 - ControlFocus ( "title", "窗口文本", controlID) 设置输入焦点到指定窗口的某个控件上; - WinWait ( "title" , "窗口文本" , 阅读全文
摘要:
1 官网下载并按装小狼毫输入法: https://rime.im/ 2 右键输入法打开输入法设定 3 点击获取更多输入法方案 4 在弹窗中输入:https://github.com/rime/rime-wubi 如图下图所示,提示有已复制文件,说明安装五笔插件成功 5 继续在弹窗中输入:https: 阅读全文
摘要:
yml文件的更新后工具类: import os import yaml class YamlUtils(): def __init__(self,folder_name='config'): self.foler_name = folder_name def get_yaml_load(self, 阅读全文
摘要:
HTMLTestRunner 生成报告如下图: 展开后可查看详情信息: 直接复制以下代码,保存为HTMLTestRunner.py 即可 # coding=utf-8 """ A TestRunner for use with the Python unit testing framework. I 阅读全文
摘要:
import os pwd = os.getcwd() print("当前目录: " + pwd) father_path_method1 = os.path.dirname(pwd) print("当前目录的父目录_方式一: " + father_path_method1) separator = 阅读全文
摘要:
UPDATE store SET food_ordering =1,self_pickup_remark = CONCAT('self pick up notes:',store_code,short_name) WHERE merchant_id = "360087641000000807" AN 阅读全文
摘要:
安装vscode 官网:https://code.visualstudio.com/ 安装 Vetur 插件,识别 vue 文件 插件库中搜索Vetur,点击安装,安装完成之后点击重新加载 新建代码片段 文件 ➡ 首选项 ➡ 用户代码片段 ➡ 点击新建全局代码片段 ➡ 取名 vue ➡ 确定 粘入v 阅读全文
摘要:
由于vue对语法的限制过于严格,以至于在我第一次编译运行的时候一直编译失败,当然也包括一些警告 ➜ myproject npm run dev > testapp@1.0.0 dev /Users/test/myproject > webpack-dev-server --inline --prog 阅读全文
摘要:
node-sass安装失败,提示如下: gyp verb check python checking for Python executable "python" in the PATH gyp verb `which` succeeded python D:\Program Files\Pytho 阅读全文