设备连接方法,有两种

1. 通过WiFi,假设设备IP 192.168.5.4和您的PC在同一网络中

import uiautomator2 as u2d = u2.connect('192.168.5.4') # alias for u2.connect_wifi('192.168.5.4')
print(d.info)

2. 通过USB, 假设设备序列是123456789F(见adb devices

import uiautomator2 as u2d = u2.connect('123456789F') # alias for u2.connect_usb('123456789F')
print(d.info)

检查并维持设备端守护进程处于运行状态

d.healthcheck()

连接本地USB设备

需要设备曾经使用 python -m uiautomator2 init 初始化过

d = u2.connect_usb("{Your-Device-Serial}")

如何停用UiAutomator的守护程序?

1. 直接打开uiautomator app(init成功后,就会安装上的),点击关闭UIAutomator

2.  d.service("uiautomator").stop()

打开调试开关

>>> d.debug = True
>>> d.info
12:32:47.182 $ curl -X POST -d '{"jsonrpc": "2.0", "id": "b80d3a488580be1f3e9cb3e926175310", "method": "deviceInfo", "params": {}}' 'http://127.0.0.1:54179/jsonrpc/0'
12:32:47.225 Response >>>
{"jsonrpc":"2.0","id":"b80d3a488580be1f3e9cb3e926175310","result":{"currentPackageName":"com.android.mms","displayHeight":1920,"displayRotation":0,"displaySizeDpX":360,"displaySizeDpY":640,"displayWidth":1080,"productName"
:"odin","screenOn":true,"sdkInt":25,"naturalOrientation":true}}
<<< END
  • 安装应用,只能从URL安装
d.app_install(' http://some-domain.com/some.apk ')
  • 安装应用

d.app_start(“ com.example.hello_world ”)# start包名称
  • 停止应用

#相当于`am force-stop`,因此你可能丢失数据
d.app_stop( “ com.example.hello_world ”)
#相当于`pm clear`
d.app_clear( ' com.example.hello_world ')
  • 推送和拉取文件

  • 把文件推送到设备
# push to a folder
d.push("foo.txt", "/sdcard/")
# push and rename
d.push("foo.txt", "/sdcard/bar.txt")
# push fileobj
with open("foo.txt", 'rb') as f:d.push(f, "/sdcard/")
# push and change file access mode
d.push("foo.sh", "/data/local/tmp/", mode=0o755)
  • 从设备中提取文件
d.pull("/sdcard/tmp.txt", "tmp.txt")# FileNotFoundError will raise if the file is not found on the device
d.pull("/sdcard/some-file-not-exists.txt", "tmp.txt")
  • 跳过弹窗,禁止弹窗
d.disable_popups() #自动跳过弹出窗口
d.disable_popups(假)#禁用自动跳过弹出窗口

Session

Session represent an app lifestyle. 可用于启动应用,检测应用崩溃

  • 启动应用
sess = d.session(“ com.netease.cloudmusic ”)
  • Attach to the running app
sess = d.session(“ com.netease.cloudmusic ”,attach = True)
  • 检测应用崩溃
# When app is still running
sess(text="Music").click() # operation goes normal# If app crash or quit
sess(text="Music").click() # raise SessionBrokenError
# other function calls under session will raise SessionBrokenError too
# check if session is ok.
# Warning: function name may change in the future
sess.running() # True or False

检索设备信息

  • 获取基本信息
d.info

以下是可能的输出:

{ u'displayRotation': 0,u'displaySizeDpY': 640,u'displaySizeDpX': 360,u'currentPackageName': u'com.android.launcher',u'productName': u'takju',u'displayWidth': 720,u'sdkInt': 18,u'displayHeight': 1184,u'naturalOrientation': True
}
  • 获取窗口大小
print(d.window_size())
# device upright output example: (1080, 1920)
# device horizontal output example: (1920, 1080)
  • 获取最新的应用信息。对于某些Android设备,输出可能为空
print(d.current_app())
# Output example 1: {'activity': '.Client', 'package': 'com.netease.example', 'pid': 23710}
# Output example 2: {'activity': '.Client', 'package': 'com.netease.example'}
# Output example 3: {'activity': None, 'package': None}
  • 获取设备序列号
print(d.serial)
# output example: 74aAEDR428Z9

关键事件

  • 打开/关闭屏幕
d.screen_on()#打开屏幕
d.screen_off()#关闭屏幕
  • 获取当前屏幕状态
d.info.get(' screenOn ')# require Android> = 4.4
  • Home / Back 按键操作
d.press("home") # press the home key, with key name
d.press("back") # press the back key, with key name
d.press(0x07, 0x02) # press keycode 0x07('0') with META ALT(0x02)
  • 目前支持这些密钥名称:
  • home
  • back
  • left
  • right
  • up
  • down
  • center
  • menu
  • search
  • enter
  • delete ( or del)
  • recent (recent apps)
  • volume_up
  • volume_down
  • volume_mute
  • camera
  • power
  • 解锁屏幕
d.unlock()
# This is equivalent to
# 1. launch activity: com.github.uiautomator.ACTION_IDENTIFY
# 2. press the "home" key

手势与设备的交互

  • 点击屏幕
d.click(x,y)
  • 双击
d.double_click(x,y)
d.double_click(X,Y,0.1)#默认之间的两个点击持续时间为0.1秒
  • 长按一下屏幕
d.long_click(x,y)
d.long_click(X,Y,0.5)#长按0.5秒(默认)
  • Swipe
d.swipe(sx, sy, ex, ey)
d.swipe(sx, sy, ex, ey, 0.5) # swipe for 0.5s(default)
  • 拖动
d.drag(sx, sy, ex, ey)
d.drag(sx, sy, ex, ey, 0.5) # Drag for 0.5s(default)
  • 滑动点   多用于九宫格解锁,提前获取到每个点的相对坐标(这里支持百分比)
# swipe from point(x0, y0) to point(x1, y1) then to point(x2, y2)
# time will speed 0.2s bwtween two points
d.swipe((x0, y0), (x1, y1), (x2, y2), 0.2)
  • 注意:单击,滑动,拖动操作支持百分比位置值。例:

    d.long_click(0.5, 0.5) 表示长按屏幕中心

屏幕相关的

  • 检索/设置设备方向     --可能的方向如下
natural or n
left or l
right or r
upsidedown or u (can not be set)
# 检索方向。输出可以是 "natural" or "left" or "right" or "upsidedown"
orientation = d.orientation# WARNING: not pass testing in my TT-M1
# set orientation and freeze rotation.
# notes: setting "upsidedown" requires Android>=4.3.
d.set_orientation('l') # or "left"
d.set_orientation("l") # or "left"
d.set_orientation("r") # or "right"
d.set_orientation("n") # or "natural"
  • Freeze/Un-freeze rotation
# freeze rotation
d.freeze_rotation()
# un-freeze rotation
d.freeze_rotation(False)
  • 截图
# 截取并保存到计算机上的文件,需要Android> = 4.2。
d.screenshot("home.jpg")# 得到PIL.Image格式的图像. 但你必须先安装pillow
image = d.screenshot() # default format="pillow"
image.save("home.jpg") # or home.png. Currently, 只支持png and jpg格式的图像# 得到OpenCV的格式图像。当然,你需要numpy和cv2安装第一个
import cv2
image = d.screenshot(format='opencv')
cv2.imwrite('home.jpg', image)# 获取原始JPEG数据
imagebin = d.screenshot(format='raw')
open("some.jpg", "wb").write(imagebin)
  • Dump UI hierarchy
# get the UI hierarchy dump content (unicoded).
xml = d.dump_hierarchy()
  • 打开通知或快速设置
d.open_notification()
d.open_quick_settings()

选择

  • Selector是一种在当前窗口中标识特定UI对象的便捷机制。
# 选择文本为'Clock'的对象,其className为'android.widget.TextView'd
d(text='Clock', className='android.widget.TextView')
  • 选择器支持以下参数。有关详细信息,请参阅UiSelector Java文档。
  • texttextContainstextMatchestextStartsWith
  • className, classNameMatches
  • descriptiondescriptionContainsdescriptionMatchesdescriptionStartsWith
  • checkablecheckedclickablelongClickable
  • scrollableenabledfocusablefocusedselected
  • packageName, packageNameMatches
  • resourceId, resourceIdMatches
  • index, instance

Children and siblings

  • children
# get the children or grandchildren
d(className="android.widget.ListView").child(text="Bluetooth")
  • siblings
# get siblings
d(text="Google").sibling(className="android.widget.ImageView")
  • children by text or description or instance
# get the child matching the condition className="android.widget.LinearLayout"
# and also its children or grandchildren with text "Bluetooth"
d(className="android.widget.ListView", resourceId="android:id/list") \.child_by_text("Bluetooth", className="android.widget.LinearLayout")# 通过允许滚动搜索来获取子项
d(className="android.widget.ListView", resourceId="android:id/list") \.child_by_text("Bluetooth",allow_scroll_search=True,className="android.widget.LinearLayout")
  • child_by_description is to find children whose grandchildren have the specified description, other parameters being similar to child_by_text.

  • child_by_instance是在子层次结构中的任何位置找到具有子UI元素的子元素,该元素位于指定的实例中。它在可见视图上执行而无需滚动.

  • UiScrollable,getChildByDescriptiongetChildByTextgetChildByInstance
  • UiCollection,getChildByDescriptiongetChildByTextgetChildByInstance
  • 打开WIFI旁边的ON

要将开关小部件单击到TextView的“Wi-Fi”,我们需要先选择切换小部件。但是,根据UI层次结构,存在多个交换机窗口小部件并且具有几乎相同的属性。通过className选择将不起作用。或者,以下选择策略将有助于:

d(className="android.widget.ListView", resourceId="android:id/list") \.child_by_text("Wi‑Fi", className="android.widget.LinearLayout") \.child(className="android.widget.Switch") \.click()
  • 相对定位

此外,我们可以使用相对定位方法来获取视图:leftrighttopbottom

  • d(A).left(B),选择A左侧的B.
  • d(A).right(B),选择A右侧的B.
  • d(A).up(B),选择B以上A.
  • d(A).down(B),在A下选择B.

因此,对于上述情况,我们可以选择它:

##选择“Wi-Fi”右侧的“开关”
d(text="Wi‑Fi").right(className="android.widget.Switch").click()
  • 多个实例

有时屏幕可能包含多个具有相同属性的视图,例如文本,那么您必须使用选择器中的“instance”属性来选择一个合格的实例,如下所示:

d(text = “ Add new ”,instance = 0)   #表示带有文本“Add new”的第一个实例

另外,uiautomator2提供了类似列表的API(类似于jQuery):

# get the count of views with text "Add new" on current screen
d(text="Add new").count# same as count property
len(d(text="Add new"))# get the instance via index
d(text="Add new")[0]
d(text="Add new")[1]
...# iterator 迭代器
for view in d(text="Add new"):view.info  # ...

注意:以列表方式使用选择器时,必须确保屏幕上的UI元素保持不变。否则,当迭代列表时可能发生Element-Not-Found错误

获取所选的ui对象状态及其信息

  • 检查特定的UI对象是否存在

d(text="Settings").exists # True if exists, else False
d.exists(text="Settings") # alias of above property.# advanced usage
d(text="Settings").exists(timeout=3) # wait Settings appear in 3s, same as .wait(3)
  • 检索特定UI对象的信息
d(text = “ Settings ”).info

以下是可能的输出:

{ u'contentDescription': u'',
u'checked': False,
u'scrollable': False,
u'text': u'Settings',
u'packageName': u'com.android.launcher',
u'selected': False,
u'enabled': True,
u'bounds': {u'top': 385,u'right': 360,u'bottom': 585,u'left': 200},
u'className': u'android.widget.TextView',
u'focused': False,
u'focusable': True,
u'clickable': True,
u'chileCount': 0,
u'longClickable': True,
u'visibleBounds': {u'top': 385,u'right': 360,u'bottom': 585,u'left': 200},
u'checkable': False
}
  • 获取/设置/清除可编辑字段的文本(例如,EditText小部件)
d(text = “ Settings ”).get_text()   # get widget text
d(text = “ Settings ”).set_text(“ My text ... ”)   #设置文本
d(text = “ Settings ”).clear_text( )   #清除文字
  • 获取Widget中心点
x, y = d(text="Settings").center()

对选定的UI对象执行单击操作

  • 执行单击特定对象
# 单击特定ui对象的中心
d(text="Settings").click()
# wait元素最多显示10秒然后单击
d(text="Settings").click(timeout=10)
# 请在10秒时点击,默认的超时0
clicked = d(text='Skip').click_exists(timeout=10.0)
# 点击直到元素不见了,返回布尔
is_gone = d(text="Skip").click_gone(maxretry=10, interval=1.0) # maxretry default 10, interval default 1.0
  • 长按特定的UI对象
# 长按特定UI对象的中心
d(text="Settings").long_click()

特定UI对象的手势操作

  • 将UI对象拖向另一个点或另一个UI对象
# notes : Android<4.3不能使用drag.
# 0.5S后,将UI对象拖动到屏幕点(x,y)
d(text="Settings").drag_to(x, y, duration=0.5)
# drag the UI object to (the center position of) another UI object, in 0.25 second
d(text="Settings").drag_to(text="Clock", duration=0.25)
  • 两点手势操作,从一个点到另一个点
d(text="Settings").gesture((sx1, sy1), (sx2, sy2), (ex1, ey1), (ex2, ey2))
  • 特定UI对象上的两点手势

支持两种手势:

  • In,从边缘到中心
  • Out,从中心到边缘
# notes : pinch can not be set until Android 4.3.
# 从边缘到中心. here is "In" not "in"
d(text="Settings").pinch_in(percent=100, steps=10)
# 从中心到边缘
d(text="Settings").pinch_out()
  • 等到特定UI出现或消失
# 一直等到UI对象出现
d(text="Settings").wait(timeout=3.0) # return bool
# 一直等到UI对象消失
d(text="Settings").wait_gone(timeout=1.0)

默认超时为20秒。有关详细信息,请参阅全局设置

  • 在特定的ui对象上执行fling(可滚动)

对特定的ui对象执行fling(可滚动)

可能的属性

  • horiz 要么 vert
  • forwardbackwardtoBeginningtoEnd
# fling forward(default) vertically(default)
d(scrollable=True).fling()
# fling forward horizontally
d(scrollable=True).fling.horiz.forward()
# fling backward vertically
d(scrollable=True).fling.vert.backward()
# fling to beginning horizontally
d(scrollable=True).fling.horiz.toBeginning(max_swipes=1000)
# fling to end vertically
d(scrollable=True).fling.toEnd()

在特定的ui对象上执行Scroll(可滚动))

Possible properties:

  • horiz or vert
  • forward or backward or toBeginning or toEnd, or to
# scroll forward(default) vertically(default)
d(scrollable=True).scroll(steps=10)
# scroll forward horizontally
d(scrollable=True).scroll.horiz.forward(steps=100)
# scroll backward vertically
d(scrollable=True).scroll.vert.backward()
# scroll to beginning horizontally
d(scrollable=True).scroll.horiz.toBeginning(steps=100, max_swipes=1000)
# scroll to end vertically
d(scrollable=True).scroll.toEnd()
# scroll forward vertically until specific ui object appears
d(scrollable=True).scroll.to(text="Security")

Watcher

当selector找不到匹配项时,您可以注册watchers 以执行某些操作。

  • 注册watchers

当selector找不到匹配项时,uiautomator2将运行所有注册的watcher。

  • 条件匹配时单击目标
d.watcher("AUTO_FC_WHEN_ANR").when(text="ANR").when(text="Wait") \.click(text="Force Close")
# d.watcher(name) ## creates a new named watcher.
#  .when(condition)  ## the UiSelector condition(条件) of the watcher.
#  .click(target)  ## 对目标UiSelector执行单击操作

关于点击还有一个技巧。您可以使用不带参数的click。

d.watcher("ALERT").when(text="OK").click()
# Same as
d.watcher("ALERT").when(text="OK").click(text="OK")
  • Press key when a condition becomes true
d.watcher("AUTO_FC_WHEN_ANR").when(text="ANR").when(text="Wait") \.press("back", "home")
# d.watcher(name) ## creates a new named watcher.
#  .when(condition)  ## the UiSelector condition of the watcher.
#  .press(<keyname>, ..., <keyname>.()  ## 按顺序依次按键.
  • 检查命名的watcher是否被触发

触发watcher,这意味着watcher已经运行且所有条件都匹配。

d.watcher("watcher_name").triggered
# 在指定的watcher触发的情况下为true,否则为false
  • 删除已命名的watcher
# remove the watcher
d.watcher("watcher_name").remove()
  • 列出所有watcher
d.watchers
# 所有注册watchers的列表
  • 检查是否有任何条件触发的watcher
d.watchers.triggered
#  true in case of any watcher triggered
  • 重置reset所有触发的watcher
# reset all triggered watchers, after that, d.watchers.triggered will be false.
d.watchers.reset()
  • 删除watcher
# remove all registered watchers
d.watchers.remove()
# remove the named watcher, same as d.watcher("watcher_name").remove()
d.watchers.remove("watcher_name")
  • 强制运行所有watcher
# force to run all registered watchers
d.watchers.run()
  • 页面更新时运行所有watcher。

通常可以用来自动点击权限确认框,或者自动安装

d.watcher("OK").when(text="OK").click(text="OK")
# enable auto trigger watchers
d.watchers.watched = True# disable auto trigger watchers
d.watchers.watched = False# get current trigger watchers status
assert d.watchers.watched == False

另外文档还是有很多没有写,推荐直接去看源码init .py

全局设置

# set delay 1.5s after each UI click and click
d.click_post_delay = 1.5 # default no delay# set default element wait timeout (seconds)
d.wait_timeout = 30.0 # default 20.0

UiAutomator中的超时设置(隐藏方法)

>> d.jsonrpc.getConfigurator()
{'actionAcknowledgmentTimeout': 500,'keyInjectionDelay': 0,'scrollAcknowledgmentTimeout': 200,'waitForIdleTimeout': 0,'waitForSelectorTimeout': 0}>> d.jsonrpc.setConfigurator({"waitForIdleTimeout": 100})
{'actionAcknowledgmentTimeout': 500,'keyInjectionDelay': 0,'scrollAcknowledgmentTimeout': 200,'waitForIdleTimeout': 100,'waitForSelectorTimeout': 0}

为了防止客户端程序响应超时,waitForIdleTimeout状语从句:waitForSelectorTimeout目前已对划线0

参考:谷歌uiautomator配置器

输入法

这种方法通常用于不知道控件的情况下的输入。第一步需要切换输入法,然后发送ADB广播命令,具体使用方法如下

d.set_fastinput_ime(True) # 切换成FastInputIME输入法
d.send_keys("你好123abcEFG") # adb广播输入
d.clear_text() # 清除输入框所有内容(Require android-uiautomator.apk version >= 1.0.7)
d.set_fastinput_ime(False) # 切换成正常的输入法

Toast

  • 在手机的屏幕上显示Toast
d.toast.show("Hello world")
d.toast.show("Hello world", 1.0) # 显示 1.0s, 默认 1.0s
  • 获取 Toast
# [Args]
# 5.0: max wait timeout. Default 10.0
# 10.0: cache time. return cache toast if already toast already show up in recent 10 seconds. Default 10.0 (Maybe change in the furture)
# "default message": return if no toast finally get. Default None
d.toast.get_message(5.0, 10.0, "default message")# common usage
assert "Short message" in d.toast.get_message(5.0, default="")# clear cached toast
d.toast.reset()
# Now d.toast.get_message(0) is None

XPath

For example: 其中一个节点的内容

<android.widget.TextViewindex="2"text="05:19"resource-id="com.netease.cloudmusic:id/qf"package="com.netease.cloudmusic"content-desc=""checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false"scrollable="false" long-clickable="false" password="false" selected="false" visible-to-user="true"bounds="[957,1602][1020,1636]" />

xpath定位和使用方法

# wait exists 10s
d.xpath("//android.widget.TextView").wait(10.0)
# find and click
d.xpath("//*[@content-desc='分享']").click()
# get all text-view text, attrib and center point
for elem in d.xpath("//android.widget.TextView").all():print("Text:", elem.text)# Dictionary eg: # {'index': '1', 'text': '999+', 'resource-id': 'com.netease.cloudmusic:id/qb', 'package': 'com.netease.cloudmusic', 'content-desc': '', 'checkable': 'false', 'checked': 'false', 'clickable': 'false', 'enabled': 'true', 'focusable': 'false', 'focused': 'false','scrollable': 'false', 'long-clickable': 'false', 'password': 'false', 'selected': 'false', 'visible-to-user': 'true', 'bounds': '[661,1444][718,1478]'}print("Attrib:", elem.attrib)# Coordinate eg: (100, 200)print("Position:", elem.center())

测试方法

$ adb forward tcp:9008 tcp:9008
$ curl 127.0.0.1:9008/ping
# expect: pong$ curl -d '{"jsonrpc":"2.0","method":"deviceInfo","id":1}' 127.0.0.1:9008/jsonrpc/0
# expect JSON output

Google uiautomator与uiautomator2的区别

  1. API相似但是不完全兼容
  2. uiautomator2是安卓项目,而uiautomator是Java项目
  3. uiautomator2可以输入中文,而uiautomator的Java工程需借助utf7输入法才能输入中文
  4. uiautomator2必须明确EditText框才能向里面输入文字,uiautomator直接指定父类也可以在子类中输入文字
  5. uiautomator2获取控件速度比uiautomator快

远程查看

手机python -m uiautomator2 init之后,浏览器输入 <device_ip:7912>,会发现一个远程控制功能,延迟非常低噢。^_^

手机USB连接后,自动调用init命令

adbkit-init

项目原地址:https://github.com/openatx/uiautomator2

Python+uiautomator2手机UI自动化测试实战 -- 2. 用法介绍相关推荐

  1. Python+uiautomator2手机UI自动化测试实战

    Python+uiautomator2手机UI自动化测试实战 -- 2.(原文地址):https://blog.csdn.net/ricky_yangrui/article/details/81415 ...

  2. ATX+Python+uiautomator2环境下进行手机UI自动化测试

    ATX+Python+uiautomator2环境下进行手机UI自动化测试 环境搭建 手机环境初始化 在网页端的UI查看器中查看控件及属性 以下是一些自己测试的脚本 环境搭建 开始配置uiautoma ...

  3. Linux下Appium+Python+headless移动APP自动化测试实战

    Linux下Appium+Python+Headless移动APP自动化测试实战 文章目录 Linux下Appium+Python+Headless移动APP自动化测试实战 1. 环境准备 1.1 安 ...

  4. Python Tree库绘制多叉树的用法介绍

    Python Tree库绘制多叉树的用法介绍 Tree 库是一个 Python 的第三方库.这个库主要用于生成树和绘制树的图形. 一.安装Tree pip install Tree 使用 Tree 库 ...

  5. Python treelib库创建多叉树的用法介绍

    Python treelib库创建多叉树的用法介绍 treelib 库是一个 Python 的第三方库.这个库实现了一些多叉树相关的常用方法. 一.安装treelib pip install tree ...

  6. UI 自动化测试 —— selenium的简单介绍和使用

    selenium 是 web 应用中基于 UI 的自动化测试框架,支持多平台.多浏览器.多语言. 提到 UI 自动化就先了解什么是自动化测试? 目录 1. 自动化测试 2. UI 自动化 2.1 UI ...

  7. python 中 关于reverse() 和 reversed()的用法介绍

    转载 csdn* 2018-11-06 13:30:36  32837  收藏 44 展开 reverse(): 是python中列表的一个内置方法(也就是说,在字典,字符串或者元组中,是没有这个内置 ...

  8. 第二十二:第一个Pytest UI自动化测试实战实例

    环境准备 项目简介 测试地址 https://mail.126.com 测试范围 1.126电子邮箱登录功能测试-验证正确帐号密码登录成功-验证错误用户名密码登录失败(有很多情况,用例里面做了充分的校 ...

  9. 2018最新APP界面设计教程---手机ui高级实战案例 视频教程(价值320元)

    课程简介: 适用人群         适合有基础的学员 学到什么         火星人UI设计培训结合大量的实战案例,从ICON的设计构思开始,到APP界面设计,全方面解析UI设计工作流程和设计理论 ...

最新文章

  1. 直接上手!不容错过的Visual Studio Code十大扩展组件
  2. 面试不知道如何回答这六大知识点,你还敢说熟悉MySQL?
  3. 汇编语言学习笔记(五)
  4. 【Java】灵活使用自定义注解和反射
  5. ActiveMq笔记3-AMQ高可用性理论
  6. java 导出表 sql_java中把SQL数据库中的表导出到excel中.怎么实现
  7. 浅谈sql之连接查询
  8. EasyUI:datagrid冻结表头
  9. 老罗android开发视频教程全集百度网盘下载
  10. SwiftyJSON 对网络请求来的数据进行解析或者转为modul
  11. 高中信息技术python教材内容_高中信息技术教材 掌控基础版
  12. python excel表格转word表格
  13. UNCODE 与 ANSI 编码互相转换
  14. 当当网张亮:深度解读分布式作业调度框架elastic-job
  15. Sketch 插件导出切片
  16. AcWing 1113. 红与黑【《信息学奥赛一本通》】【DFS】【BFS】【Flood Fill】
  17. 孤岛惊魂3闪退win10win11下运行办法
  18. 局域网查看工具 V1.62.rar
  19. canvas艺术字-扩展-闪烁效果
  20. 支付宝电脑网站支付(新版)

热门文章

  1. Sea-thru: A Method For Removing Water From Underwater Images论文研读
  2. 哈工大计算机学院美女多吗,16所大学男女比例:电子科大最高,哈工大、西电其次,复旦最均衡...
  3. 输入股票、热门事件词,查最新消息
  4. VMware云管平台运维管理
  5. 怎么储存才能让CPU永久性使用导热硅脂
  6. 完整版MYSQL 使用基础 - 这么用就对了
  7. linux提升普通用户权限
  8. 使用gn创建HelloWorld工程
  9. SARscape数据处理SAR数据笔记——DINSAR微小形变提取
  10. 日语语法实践篇十二——新编日语第一册第十三课之会话篇