swift 我们可以使用XCUITest在Safari中自动化网页吗?无Appium

omhiaaxx  于 2023-08-02  发布在  Swift
关注(0)|答案(1)|浏览(136)

有没有一个github repo说明如何使用XCUITest通过Safari浏览器自动化网页。不使用Appium或其他移动的框架

z4iuyo4d

z4iuyo4d1#

是的可以通过使用Safari

public let safari = XCUIApplication(bundleIdentifier: "com.apple.mobilesafari")

safari.launch()
safari.textFields["Address"].tap()
safari.textFields["Address"].typeText(url)

url is your desired web address

After this you can interact the web page via 
safari.buttons["xxxx"].firstMatch
safari.textFields["yyyy"].firstMatch

字符串

相关问题