我正在使用xcode 8.3.3并编写XCUI测试。
我有以下内容:
let address = XCUIApplication().buttons["URL"].value as! String
查看调试器,我可以看到值为:
如果我订
expectedURL = "\u{e2}auth.int....net"
然后返回:
如果我订
expectedURL = "auth.int....net"
然后返回:
如何让测试断言找到两个相等的字符串?
试过以下内容,但它并没有取代" \ u {e2}":
let address = value.components(separatedBy: ",").first!.replacingOccurrences(of: "\u{e2}", with: "")
而且(但它并没有取代" \ u {e2}"):
let range = Range<String.Index>(uncheckedBounds: (lower: address.startIndex, upper: address.endIndex))
let strippedAddress = address.replacingOccurrences(of:"\\u{e2}", with: "", options: .literal, range: range)
对于断言,我使用的是XCTAssertEqual(address, expectedURL)
答案 0 :(得分:6)
您可以通过用字母数字字符分隔然后用空字符串连接来修复它,如下所示。
let myString = address.components(separatedBy: CharacterSet.alphanumerics.inverted).joined(separator: "")
myString
等于authintxxxxxxxxxnet(没有“。”字符),因此您应该只能更改预期的URL以匹配。
希望有所帮助!