使用Selenium上传APK文件

时间:2019-05-27 13:22:35

标签: java html angularjs selenium automated-tests

我在测试中遇到一个问题。我正在尝试上传APK文件,但是到了这一步,什么也没发生。

我已经尝试过使用带有文件路径并使用AutoIT脚本的简单sendKeys,但是它们都不起作用。

在这里输入:

<button uib-tooltip-html="uploadTooltip" ng-if="(privileges.update &amp;&amp; !uploadForm.$visible) || createNew" ng-click="this.value = null;" ng-file-select="uploadFile($files, uploadForm)" class="btn btn-xs btn-default ng-scope ng-isolate-scope" ng-disabled="status.disabled || progressPercentage" type="button" style="overflow: hidden;">
<i class="fa fa-fw fa-upload"></i>
        <input type="file" tabindex="-1" ng-file-generated-elem="true" style="width: 1px; height: 1px; opacity: 0; position: absolute; padding: 0px; margin: 0px; overflow: hidden;">
<input type="file" tabindex="-1" ng-file-generated-elem="true" style="width: 1px; height: 1px; opacity: 0; position: absolute; padding: 0px; margin: 0px; overflow: hidden;">
</button>

我尝试过的方法(也使用带有sendKeys完整路径的字符串):

String filePath = System.getProperty("user.dir") + "src\\test\\APK\\com.airbnb.android.apk";
        tryToClearAndSendKeysForSeconds(5, UPLOAD_FILE_BUTTON, filePath); // method for sendKeys with wait, locator and string
Runtime.getRuntime().exec("C:\\Users\\IdeaProjects\\Automated_Tests\\src\\test\\APK\\FileUpload.exe");

AutoIT:

ControlFocus(“Open”,””,”Edit1″)
ControlSetText(“Open”,””,”Edit1″,”D:\HDimage\profile.jpeg”)
ControlClick(“Open”,””,”Button1″)

我不确定在发送文件时是否应该在发送文件之前单击上载按钮,但是当我这样做时(我正在使用win 10 btw): enter image description here

将感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

请按照以下步骤上传APK或任何文件:

a)将文件上传到服务器上tmp目录中以进行临时备份。像

String path = FILE_UPLOAD_COMMON_PATH + File.separatorChar + file.getName();

try(FileOutputStream fileOutputStream = new FileOutputStream(path)){
    fileOutputStream.write(bs); // byte[] bs
}catch(Exception e) {
    throw e;
}

b)现在从tmp目录获取并使用类似驱动程序上传文件,

String path = FILE_UPLOAD_COMMON_PATH + File.separatorChar + file.getName();
driver.findElements(By.id("files")).get(0).sendKeys(path);

愿它能解决您的问题。