摘要:
/*drop table #tmpTable create TABLE #tmpTable(f_id int IDENTITY(1,1) PRIMARY KEY,--水果ids_id int not null, --供应商idf_name varchar(255) not null,--水果名称f_ 阅读全文
摘要:
车辆委托单,物流单需要输入提车时间,提车时间控件,提供了今天,明天,后天时间段选择 测试的时候,各个时间端都测试过没问题,但到了小月,比如6月30测试号,选择明天,后天,提交表单的时候时间显示乱码,原因是时间控件显示明天0631,后天0632, 平时测试没有问题,只有在小月29,大月30,31号才能 阅读全文
摘要:
#python3,str和bytes类型相互转换工具类#file:python3_endecode_helper.pydef to_str(bytes_or_str): if isinstance(bytes_or_str,bytes): value = bytes_or_str.decode('U 阅读全文
摘要:
1、安装Appium-Python-Client安装:python setup.py install升级:pip install --upgrade Appium-Python-Client2、查看selenium版本 cmd:pythonimport seleniumselenium.__version__ 3、pip查看selenium版本号:.打开cmd,输入pip show seleniu 阅读全文
摘要:
启动appium服务并监听一个端口命令: 命令command==> appium -a {ip} -p {port} -U {deviceName} -g {log} 以shell命令方式执行命令,并输入日志到log文件:用subprocess需导入 subprocess.Popen(command 阅读全文
摘要:
mumu模拟器开启调试模式 在命令行(cmd)输入 adb connect 127.0.0.1:7555 2.网易mumu模拟器配置文件在安装目录下 emulator\nemu\vms\myandrovm_vbox86下的myandrovm_vbox86.nemu文件中 ADB_PORT参数与上面的 阅读全文
摘要:
1 aapt即Android Asset Packaging Tool,在SDK的build-tools目录下。该工具可以查看apk包名和launcherActivity,当然还有更多的功能,有兴趣的可以查看相关资料。 一、下载aapt 1.在android-sdk里面双击SDK-manager,下 阅读全文