作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在混合应用程序上使用 detox。我想在 native 代码中使用 by.id
目前我是这样登录的:
try {
// 'Email address' is the input's placeholder text
await waitFor(element(by.text('Email address')).atIndex(0))
.toBeVisible()
.withTimeout(TIMEOUT);
await expect(element(by.label('Email address')).atIndex(0)).toBeVisible();
await element(by.label('Email address')).atIndex(0).typeText(config[email].email);
} catch (err) {
// Email addresses get cached, so you won't find the text 'Email address' after the first login
} finally {
await element(by.label('Password')).atIndex(0).typeText(devConfig[email].password);
await element(by.label('Sign in')).atIndex(0).tap();
}
我想做这样的事情。
await element(by.id('email')).typeText(devConfig[email].password);
await element(by.id('password')).typeText(devConfig[email].password);
await element(by.id('login')).tap();
如何将 id 添加到 native ios 输入?
最佳答案
testID
在 iOS 上映射到 accessibilityIdentifier
。因此,如果您将其设置为所需的值,您将能够使用 by.id()
来匹配它。
关于ios - 如何将 id 添加到 native ios 屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50587801/
我是一名优秀的程序员,十分优秀!