构建APP并执行用例
构建APP 编译
debug模式
detox build --configuration ios.sim.debug
release模式
detox build --configuration ios.sim.release
5.2 执行用例
debug模式
detox test --configuration ios.sim.debug
release模式
detox test --configuration ios.sim.release
常用操作方法
模拟用户行为
Actions are functions that emulate user behavior. They are being performed on matched elements.
操作用来模拟用户行为的,是在匹配的元素上执行的模拟操作的。
.tap()
点击.longPress()
长按.multiTap()
多次点击.tapAtPoint()
点击坐标.typeText()
输入文本.replaceText()
.clearText()
.scroll()
.scrollTo()
.swipe()
.setColumnToValue()
iOS onlytap()
点击Simulate tap on an element.
await element(by.id('tappable')).tap();
longPress(duration)
长按Simulate long press on an element.
duration - long press time interval. (iOS only)
await element(by.id('tappable')).longPress();
multiTap(times)
多次点击Simulate multiple taps on an element.
await element(by.id('tappable')).multiTap(3);
tapAtPoint()
点击特定坐标位置Simulate tap at a specific point on an element.
Note: The point coordinates are relative to the matched element and the element size could changes on different devices or even when changing the device font size.
await element(by.id('tappable')).tapAtPoint({x:5, y:10});
typeText(text)
文本输入Use the builtin keyboard to type text into a text field.
await element(by.id('textField')).typeText('passcode');
Note: Make sure hardware keyboard is disconnected. Otherwise, Detox may fail when attempting to type text.
To make sure hardware keyboard is disconnected, open the simulator from Xcode and make sure Hardware -> Keyboard -> Connect Hardware Keyboard is deselected (or press ⇧⌘K).
确保硬件键盘断开连接(cmd + shift + K 断开硬件键盘 )
replaceText(text)
粘贴到文本框文本Paste text into a text field.
await element(by.id('textField')).replaceText('passcode again');
clearText()
讲文本框文本清除Clear text from a text field.
await element(by.id('textField')).clearText();
scroll(pixels, direction)
桌面滚动Scroll amount of pixels.
pixels - independent device pixels.
direction - left/right/top/bottom
await element(by.id('scrollView')).scroll(100, 'down'); // 向下滚动100像素
await element(by.id('scrollView')).scroll(100, 'up'); // 向上滚动100像素
scrollTo(edge)
滚动到边缘Scroll to edge.
edge - left/right/top/bottom
await element(by.id('scrollView')).scrollTo('bottom');
await element(by.id('scrollView')).scrollTo('top');
swipe(direction, speed, percentage)
滑动direction - left/right/up/down
方向
speed - fast/slow - default is fast
速度
percentage - (optional) screen percentage to swipe as float
百分比
await element(by.id('scrollView')).swipe('down');
await element(by.id('scrollView')).swipe('down', 'fast');
await element(by.id('scrollView')).swipe('down', 'fast', 0.5);
setColumnToValue(column,value)
iOS onlycolumn - date picker column index
value - string value to set in column
await expect(element(by.type('UIPickerView'))).toBeVisible();
await element(by.type('UIPickerView')).setColumnToValue(1,"6");
await element(by.type('UIPickerView')).setColumnToValue(2,"34");