appium定位方法

 

 

 

 

 

 

参考链接:https://www.freesion.com/article/49191144184/

 

 

 

 

SELECT ELEMENT BY ACCESSIBILITY ID 使用~

pageObjects

import {adbInput,killApp} from '../../../utils/adbHelper'

class MobileHome {
    get MyPrometheanApp() { return android.$('~Promethean') }
    async openMyPrometheanApp() {
        adbInput.keyevent(androidID,'KEYCODE_HOME')
        killApp(androidID,'com.prometheanworld.mobile.teacher_app')
        await this.MyPrometheanApp.click()
    }
}

export default new MobileHome()

 

 

 

posted @ 2022-08-08 18:01  陈晓猛  阅读(29)  评论(0编辑  收藏  举报