Getting text from TextView in UI test in XCTest
I found the answer. The correct way is:
XCTAssert([textView.value isEqualToString:@"9.9"]);
or let text = textView.value as! String
I found the answer. The correct way is:
XCTAssert([textView.value isEqualToString:@"9.9"]);
or let text = textView.value as! String