随笔分类 - python实战&框架
摘要:转载:https://www.cnblogs.com/huny/p/14079320.html 3.使用一个demo测试网站:https://www.websocket.org/echo.html 进行演示。 import json from websocket import create_conn
阅读全文
摘要:先科普一下 mac 一般使用bash作为默认shell Mac系统的环境变量,加载顺序为:/etc/profile /etc/paths ~/.bash_profile ~/.bash_login ~/.profile ~/.bashrc当然/etc/profile和/etc/paths是系统级别的
阅读全文
摘要:source ~/.zshrc[oh-my-zsh] plugin 'zsh-syntax-highlighting' not found 参考https://github.com/ohmyzsh/ohmyzsh/issues/7688 I solve it by the command : '''
阅读全文
摘要:https://blog.csdn.net/swordgirl2011/article/details/50918665
阅读全文
摘要:打开终端terminal cd ~open -e .bash_profile 在弹出的文件编辑窗口中,加入 export PATH=${PATH}:~/Library/Android/sdk/tools/bin 备注:/Users/用户名/Library/Android/sdk 安装路径 如果需要在
阅读全文
摘要:~/Desktop/softwareinstall/android_sdk_macosx/tools ./uiautomatorviewer 03:56:07 E/Screenshot: Unsupported protocol: 2 Unexpected error while obtaini
阅读全文
摘要:参考帖子:https://blog.csdn.net/linhunshi/article/details/72866345这篇帖子非常非常有用! 1、确保Android手机已经连上电脑,并且打开USB调试。(开发者模式打开+USB调试打开) 2、MAC终端下,命令行执行system_profiler
阅读全文
摘要:最初我安装的nodejs是15.0版本,比较高,一直出现各种各样的报错,无奈只能卸载干净,重启电脑 参考https://blog.csdn.net/weixin_39534759/article/details/111282386 fatal error: too many errors emitt
阅读全文
摘要:参考资料:https://www.cnblogs.com/wutaotaosin/p/10025121.html mac用usb https://www.cnblogs.com/gloria-5/p/10871239.html 其实这已经是一个很古老的知识了,记录一下备忘。 准备工作 手机和电脑需要
阅读全文
摘要:Mac配置Appium时输入命令appium-doctor检测报错:WARN AppiumDoctor ✖ ANDROID_HOME is NOT set! 我的情况是:我配置的时候最开始ANDROID_HOME写的是ANDROID_SDK_HOME 后来改成了ANDROID_HOME 再检测一遍a
阅读全文
摘要:ERROR: Could not install packages due to an EnvironmentError: HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Max retries exceeded with
阅读全文
摘要:参考资料:https://www.cnblogs.com/mini-monkey/p/11544259.html 安装套件管理工具-Homebrew 1,Homebrew官网获取安装指令,官网地址:https://brew.sh/ 安装指令:/usr/bin/ruby -e "$(curl -fsS
阅读全文
摘要:参考资料:https://www.cnblogs.com/May-study/p/10900188.html 参考资料:环境变量的配置和adb相关操作命令:https://blog.csdn.net/shudaiziyang/article/details/80223165 android sdk安
阅读全文
摘要:参考资料:https://blog.csdn.net/daisycold/article/details/111288272 安装gst-launch-1.0.exe and gst-inspect-1.0.exe 手动下载安装,下载地址:https://gstreamer.freedesktop.
阅读全文
摘要:参考资料:https://blog.csdn.net/github_35160620/article/details/52365824 Windows系统 安装 CMake 我们的电脑系统:Windows 10 64位安装的CMake 版本:cmake-3.6.1-win64-x64(目前最新) 1
阅读全文
摘要:解决 mjpeg-comsumer cannot be found的问题安装:npm i -g mjpeg-consumer
阅读全文
摘要:参考资料:https://www.zhihu.com/question/288655694/answer/1605692761 可以看下我刚整理的ffmpeg安装方法: 1、下载ffmpeg安装包 到ffmpeg官网https://ffmpeg.org/download.html 按照下图所示红框位
阅读全文
摘要:安装包获取: 6、bundletool.jar cannot be found在https://github.com/google/bundletool/releases 下载bundletool.jar,改名改成这个bundletool.jar在android sdk目录下,创建bundle-to
阅读全文
摘要:https://www.cnblogs.com/HathawayLee/p/10061173.html 自动化测试有两种驱动: 1、数据驱动 ,数据从excel/txt中来 2、代码驱动,有业务流程 atp只能实现数据驱动 utp能实现数据驱动和代码驱动 注册 登录 抽奖 接口测试(代码驱动)
阅读全文