基础命令
<p>[TOC]</p>
<h1>getXml 获取屏幕的xml信息</h1>
<ul>
<li><code>getXml()</code></li>
</ul>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<h1>getNode 获取屏幕的json信息</h1>
<pre><code class="language-c">device.getNodes()</code></pre>
<h1>getText 取屏幕文字</h1>
<pre><code class="language-c">device.getText()</code></pre>
<h1>time 获取系统时间戳,单位:毫秒</h1>
<ul>
<li><code>time = time()</code></li>
</ul>
<h1>toast 弹出消息提示</h1>
<ul>
<li><code>toast()</code></li>
</ul>
<table>
<thead>
<tr>
<th>参数名</th>
<th>类型</th>
<th>说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>str</td>
<td>string</td>
<td>w</td>
</tr>
</tbody>
</table>
<h1>sleep 延时</h1>
<pre><code class="language-c">//暂停3毫秒
sleep(3000);</code></pre>
<h1>click 点击坐标</h1>
<table>
<thead>
<tr>
<th>参数</th>
<th>类型</th>
<th>描述</th>
</tr>
</thead>
<tbody>
<tr>
<td>x</td>
<td>int</td>
<td>要点击的坐标的x值</td>
</tr>
<tr>
<td>y</td>
<td>int</td>
<td>要点击的坐标的y值</td>
</tr>
</tbody>
</table>
<pre><code class="language-c">//点击坐标(220,120)
click(220,120)</code></pre>