gpt4 book ai didi

ios - 在 XC UI 测试期间删除 TextView 中的文本?

转载 作者:行者123 更新时间:2023-12-01 18:40:54 36 4
gpt4 key购买 nike

我正在尝试从 TextView 中删除以前的值,但由于光标始终位于 TextView 的开头,所以我无法删除。我正在使用

extension XCUIElement {
/**
Removes any current text in the field before typing in the new value
- Parameter text: the text to enter into the field
*/
func clearAndEnterText(text: String) -> Void {
guard let stringValue = self.value as? String else {
XCTFail("Tried to clear and enter text into a non string value")
return
}

self.tap()

let deleteString = stringValue.characters.map { _ in XCUIKeyboardKeyDelete }.joinWithSeparator("")

self.typeText(deleteString)
self.typeText(text)
}
}

来源: https://stackoverflow.com/a/32894080/2563133

最佳答案

如果您不想依赖键盘并且不使用剪贴板,则可以将其剪切:

extension XCUIApplication {
func clearTextOnElement(_ element: XCUIElement) {
element.doubleTap()
menuItems["Select All"].tap()
menuItems["Cut"].tap()
}
}

基于 Mr.ConstantChange answer .

关于ios - 在 XC UI 测试期间删除 TextView 中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43306049/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com