使用appium处理Android标签页中的上传内容

时间:2016-10-03 10:45:49

标签: selenium appium

我正在使用appium和Selenium进行webapp测试。我正在使用Android标签。

我在标签中有一个处理文件上传的方案。我们如何上传文件
在标签?

1 个答案:

答案 0 :(得分:-2)

在android中你需要编写一些adb命令来获取设备存储中的文件路径,然后将路径传递给sendkey。

ADB命令:

adb device - it will give list of device
adb -s <device_id> shell - this will access your android device from command line
cd <file_path_folder>/ - go to the location where you place file in your mobile device
pwd - this will give your file path

从你的deivce获取文件并使用它。