div{ width: 0px; border: 30px solid transparent; border-left-color: tomato;} 第二种方法 div{ margin: auto; width: 0px; border-top: 20px solid transparent; ...
分类:
其他好文 时间:
2021-06-28 19:45:26
阅读次数:
0
子序列自动机 (Subsequence Automaton) 时隔两个月回来学自动机. 子序列自动机可以在线性时间识别一个字符串 \(a\) 是否是 \(s\) 的子序列. 首先考虑 \(s\) 没有重复字符的情况, 那么 \(s\) 的子序列就是 \(2^{Len_s}\) 种, 分别是每个字符选 ...
分类:
其他好文 时间:
2021-06-16 17:45:38
阅读次数:
0
select 与 bind:value、option 与 value、multiple ...
分类:
其他好文 时间:
2021-06-10 17:39:55
阅读次数:
0
1 import os 2 3 # 获取手机系统信息 4 phone_sys = os.popen('adb shell "cat /system/build.prop | grep "product""').read() 5 print(phone_sys) 6 7 # 获取手机设备型号 8 de ...
分类:
编程语言 时间:
2021-03-30 13:42:38
阅读次数:
0
8. 字符串转换整数(atoi) 直接模拟 class Solution { public int myAtoi(String s) { int ans = 0; int coefficient = 1; boolean hasFirst = false; for(char c : s.toChar ...
分类:
其他好文 时间:
2021-01-22 12:04:19
阅读次数:
0
很多做测试的同学对UI自动化充满着向往,但又充满畏惧,经常不知道如何入手。一方面是因为技术薄弱,觉得自动化测试比较难,另一方面可能对自动化测试持怀疑态度。那到底什么是UI自动化测试,它能给我们带来什么样的价值呢?下面我们探讨下移动端的UI自动化方法。 什么是UI自动化?首先,我们引用来自Monkey ...
分类:
移动开发 时间:
2020-07-16 22:02:33
阅读次数:
110
Game of Life (M) 题目 According to the Wikipedia's article: "The Game of Life, also known simply as Life, is a cellular automaton devised by the British ...
分类:
其他好文 时间:
2020-06-26 10:53:37
阅读次数:
48
Mac环境准备: Node.js +8.0 方法一:在官方下载网站下载 pkg 安装包,直接点击安装即可。 方法二:用brew命令来安装,brew install node 基础库版本为2.7.3 微信开发者工具版本1.02.1907232 及以上 jest框架 npm i jest -g 调用开发 ...
分类:
微信 时间:
2020-06-07 00:40:56
阅读次数:
251
今天在做appium自动化练习的时候,发现一个问题。 问题描述: 用模拟器打开页面的弹出框与跑脚本打开的页面弹出框不一样。 模拟器打开的弹出框: 解决办法: 因为跑脚本的页面是无法 在automatorviewer中定位的。 所以:只能在跑脚本的 时候,手动去关闭那个弹出框了。(跑脚本的时候每次的弹 ...
分类:
移动开发 时间:
2020-06-06 15:34:55
阅读次数:
88
Appium两种定位方式,一种是继承selenium的定位方式,还是一种是Android uiaumator2的定位方式 (一)、seleium的定位 1、定位方式主要有以下几种 id-》resource-id class_name-》class name-》text accessibility_i ...
分类:
移动开发 时间:
2020-05-26 11:52:36
阅读次数:
99