gpt4 book ai didi

ios - Appium ios 自动化 nodejs 脚本

转载 作者:行者123 更新时间:2023-11-29 02:43:08 26 4
gpt4 key购买 nike

我正在尝试使用 Appium(来自终端)和 nodejs 脚本在真实设备上自动化 iOS native 应用程序。我能够安装和启动应用程序,直到应用程序的第一个屏幕,但之后除了 sleep 之外没有任何 nodejs 脚本被执行。我需要在屏幕上出现的文本字段中输入一些文本,但光标指向并且之后没有任何反应。请告诉我这里是否使用了正确的 nodejs 命令。

注意:相同的 nodejs 脚本在 android 自动化中运行良好

var wd = require("wd");
require('colors');
var chai = require("chai");
var chaiAsPromised = require("chai-as-promised");
var capture = require("capture");
chai.use(chaiAsPromised);
chai.should();
chaiAsPromised.transferPromiseness = wd.transferPromiseness;

var host, port, username, accessKey, desired;
console.log("Print 1");
var desired = {
'browserName': '',
'automationName': 'Appium',
'platformName': 'iOS',
'platformVersion': '6.1.4',
'deviceType':'iPhone',
'deviceName' :'xxx’s iPhone',
// 'nativeInstrumentsLib' : 'true',

'app': "/Users/Desktop/xxx_my_appname-358.ipa",

'bundleId': 'com.xxx.myapp',
'deviceOrientation': 'portrait'

};
host = "localhost";
port = 4723;


// Instantiate a new browser session
var browser = wd.promiseChainRemote(host, port, username, accessKey);

// See whats going on
browser.on('status', function (info) {
console.log(info.cyan);
});
browser.on('command', function (meth, path, data) {
console.log(' > ' + meth.yellow, path.grey, data || '');
});

// Run the test
browser.init(desired)
// then(function () {
browser
// yield.elementByName("userNameTextField").click()
.sleep(30000) // **** WORKING FINE**
.elementByName('User Id').type('userID') // ** NOT WORKING **
.elementByName('Next').click() // ** NOT WORKING **
.elementByName('Password').type('password') // ** NOT WORKING *

.sleep(30000) // **** WORKING FINE**
.fin(function () {
return browser
.sleep(30000)
.quit()
console.log("inside click");
// });
})
.catch(function (err) {
console.log(err);
console.log("Entering into error Catch...")
throw err;
})
.done();

最佳答案

尝试使用 Appium 应用检查器获取元素的 xpath:

.elementByXPath("//UIAApplication[1]/UIAWindow[1]/UIATextField[1]").sendKeys("userID")

.elementByXPath("//UIAApplication[1]/UIAWindow[1]/UIASecureTextField[1]").sendKeys("password")

关于ios - Appium ios 自动化 nodejs 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25499279/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com