Airtest引用其他的 .air 脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Airtest引用其他的 .air 脚本相关的知识,希望对你有一定的参考价值。

参考技术A 可以将一些通用的操作写在一个 .air 脚本里,然后在其他脚本中 import 它。Airtest提供了 using 接口,能够将需要引用的脚本加入 sys.path 里,其中包含的图片文件也会被加入 Template 的搜索路径中。

from airtest.core.api import using

using("common.air")

from common import common_function

common_function()

========================================================================

一般airtest脚本默认都执行了from airtest.core.api import *,所以import using这一步一般不用加

使用using加载需要导入的air

执行导入

========================================================================

Airtest官方参考文档 https://airtest.readthedocs.io/zh_CN/latest/README_MORE.html#import-from-other-air

以上是关于Airtest引用其他的 .air 脚本的主要内容,如果未能解决你的问题,请参考以下文章

airtest之脚本批量运行

airtest启用本地python环境的方法

如何用Airtest编写UI自动化脚本

airtest 报告-本地正常访问,其他人无法正常加载图片

自动化测试测试工具 AirTest 的使用方法与简介

Airtest介绍与脚本入门