转自:https://blog.csdn.net/dearsq/article/details/52354593 调试流程设置 dts 中的参数 并 配置管脚背光部分LCD 初始化序列 cmds打开 config检查电压调试顺序1 背光有没有亮2 开机 以及 从休眠状态唤醒 都没有显示内容3 我碰到 ...
分类:
移动开发 时间:
2020-06-08 00:25:13
阅读次数:
249
Appium移动端自动化:Appium-Desktp的使用以及定位元素方式总结 目录 一、appium-desktop功能介绍 二、定位方式 1、ClassName 2、id定位 3、xpath定位 4、AccessibilityId 5、AndroidUiautomator定位 6、iOSPred ...
分类:
移动开发 时间:
2020-06-07 21:44:37
阅读次数:
106
# coding:utf-8 from shutil import make_archive import os import time # 指定需要监测的文件夹 image_path = './image' # 指定压缩包存放的文件夹 output_path = './output' # 记录生成 ...
分类:
编程语言 时间:
2020-06-07 19:17:02
阅读次数:
78
项目运行环境以及需要安装的包 请参考上一篇博文 https://www.cnblogs.com/wangcongxing/p/13060300.html # 导入selenium 模块 from selenium import webdriver from time import sleep # 添 ...
分类:
其他好文 时间:
2020-06-07 14:43:14
阅读次数:
119
Mit6.828/6.S081 fall 2019的Lab1是Unix utilities,主要内容为利用xv6的系统调用实现sleep、pingpong、primes、find和xargs等工具。本文对各程序的实现思路及xv6的系统调用流程进行详细介绍。 前言 在实验之前,推荐阅读一下官网LEC1 ...
分类:
其他好文 时间:
2020-06-07 14:41:18
阅读次数:
128
1 import threading 2 import time 3 def coding(): 4 for i in range(3): 5 print('输入代码%s' %i) 6 time.sleep(1) 7 def drawing(): 8 for i in range(3): 9 pri ...
分类:
编程语言 时间:
2020-06-07 13:13:27
阅读次数:
68
今天在写程序的时候需要使用sleep函数,但是每次调用都不能将程序休眠,查阅资料可知: 在WSL1中的Ubuntu 20.04对于sleep()函数不能正确调用 文章链接:https://blog.csdn.net/sinat_27953939/article/details/106473347?f ...
分类:
系统相关 时间:
2020-06-07 12:40:30
阅读次数:
122
package main import ( "time" "fmt" "runtime" ) func test() { for i:=0;i<10;i++{ time.Sleep(time.Microsecond *100) fmt.Print(i) } fmt.Println(" ") } fu ...
分类:
其他好文 时间:
2020-06-07 11:06:47
阅读次数:
59
鼠标+键盘事件 一、鼠标事件 Selenium提供ActionChains类中 from selenium.webdriver.common.action_chains import ActionChains 鼠标操作的常用方法: 操作 方法 右击 context_click() 双击 double ...
分类:
其他好文 时间:
2020-06-07 09:25:04
阅读次数:
72
threading-Thread类 方法与multiprocessing中基本一致 线程创建 Thread类创建 from threading import Thread import time def sayhi(name): time.sleep(2) print('%s say hello' ...
分类:
编程语言 时间:
2020-06-06 21:42:39
阅读次数:
76