business_shopping.js
2.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const wd = require('wd');
const {describe} = require('../../libs/driver');
const {iOS_BUSINESS_SHOPPING} = require('../../scene-types/scene-types');
describe(iOS_BUSINESS_SHOPPING,'购物车', async(driver) => {
// let touchTab = await driver.waitForElementByAccessibilityId('indicator_shoppingbag',10000);
let touchTab = await driver.waitForElementByXPath('//XCUIElementTypeApplication[@name="Yoho!Buy有货"]/XCUIElementTypeWindow[1]/XCUIElementTypeOther/XCUIElementTypeOther[1]/XCUIElementTypeOther[2]/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther[4]',5000);
await touchTab.click();
// driver.execute('mobile: scroll', {direction: 'down', element: element.value.'BF000000-0000-0000-922D-000000000000'});
// await driver.sleep(3000);
touchTab = await driver.waitForElementByAccessibilityId('select',3000);//单选
await touchTab.click();
//'selectAll' 全选 'mealSelect' 套餐
touchTab = await driver.waitForElementByAccessibilityId('editCart',5000);//编辑
await touchTab.click();
touchTab = await driver.waitForElementByAccessibilityId('shopcart_add',3000);//增加
await touchTab.click();
touchTab = await driver.waitForElementByAccessibilityId('shopcart_sub',3000);//减少
await touchTab.click();
touchTab = await driver.waitForElementByAccessibilityId('editCart',1000);//完成
await touchTab.click();
touchTab = await driver.waitForElementByAccessibilityId('submitAndPay', 2000);
await touchTab.click();
touchTab = await driver.waitForElementByAccessibilityId('确定', 2000);//下单
await touchTab.click();
touchTab = await driver.waitForElementByAccessibilityId('yh_base_vc_back_btn', 2000);//返回
await touchTab.click();
touchTab = await driver.waitForElementByAccessibilityId('确认离开', 2000);//返回
await touchTab.click();
touchTab = await driver.waitForElementByAccessibilityId('yh_base_vc_back_btn', 2000);//返回
await touchTab.click();
////XCUIElementTypeApplication[@name="Yoho!Buy有货"]/XCUIElementTypeWindow[1]/XCUIElementTypeOther/XCUIElementTypeOther[1]/XCUIElementTypeOther[2]/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeOther/XCUIElementTypeTable/XCUIElementTypeCell[3]
// touchTab = await driver.waitForElementByAccessibilityId('yh_paymentcenter_checked', 2000);//下单
// await touchTab.click();
// touchTab = await driver.waitForElementByAccessibilityId('支 付', 2000);//拉起支付
// await touchTab.click();
await new Promise(r => {
setTimeout(() => {
r()
}, 3000);
})
});