我是靠谱客的博主 大方云朵,最近开发中收集的这篇文章主要介绍appium连接ios数据,知识点,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.查找udid和包名

2,appium连接ios手机的条件

from appium import webdriver
from selenium.webdriver.common.by import By
import time

def test_01():
    desired_caps = dict()

    desired_caps["platformName"]="iOS"
    desired_caps["appium:platformVersion"]="15.0"
    desired_caps["appium:deviceName"]="iPhone 11 Pro"
    desired_caps["appium:app"]="com.XXXXXXX.hecmccmobile"

    desired_caps["udid"]='0000XXX0-000XXXXX1DA802E'

    driver = webdriver.Remote("http://localhost:4723/wd/hub", desired_caps)
    time.sleep(10)

    #driver.find_element(By.XPATH, "//XCUIElementTypeTabBar[@name='标签栏']/XCUIElementTypeButton[5]")
    driver.find_element(By.XPATH, '*/XCUIElementTypeButton[5]')

    #driver.find_element_by_ios_predicate("type == 'XCUIElementTypeButton' AND index == '5'")
    #driver.find_element_by_ios_predicate("value == 'ClearEmail'")


if __name__ == '__main__':
    test_01()

3.打开app的代码

最后

以上就是大方云朵为你收集整理的appium连接ios数据,知识点的全部内容,希望文章能够帮你解决appium连接ios数据,知识点所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部