Posts

Post not yet marked as solved
0 Replies
307 Views
Hi, I noticed that the iOS calendar understands URL's of video conferencing app meetings (e.g. Webex, Zoom, Microsoft Teams, Google Meet etc.). Even when I have the app not installed on the iPhone, it knows from the URL that this is a videoconferencing app meeting link, so it show a section with the URL and a 'Join' button. If the app is installed, it shows the app icon (e.g. Webex), otherwise it shows a video icon. The calendar event was created outside of any of these apps and was simply a copy-paste of the meeting URL in the calendar event (created using Outlook), so nothing was done within the videoconferencing app to associate it with the calendar event. iOS Calendar seems to understand this from the meeting URL I'm not sure if this is some capability of Universal links on iOS, but I have not found anything related to that in the documentation. Does anyone know how to achieve this effect of making the iOS calendar show a 'Join' button next to meeting URL? Thanks
Posted
by TI1.
Last updated
.
Post not yet marked as solved
0 Replies
243 Views
Hello,I'm doing some UI testing where it find the textfield and types letters to simulate user typing as follows: app.keys["\(letter)"].tap()I time this operation like:let start = NSDate()app.keys["\(letter)"].tap()let end = NSDate()The difference is examined to see how long it takes. The reason is that I'm investigating a problem where the keyboard seems to get stuck for users some times on the app. When XCTest detects a situation where the end - start > threshold (4 seconds), it prints this:t = 3610.18s Wait for com.xxxx to idle t = 3610.24s Find the "A" Key t = 3614.35s Check for interrupting elements affecting "A" Key t = 3614.35s Synthesize event t = 3614.55s Wait for com.xxxx to idleTime difference is 4.660948038101196 secWhat this shows is that the find key "A" is executed and then 4 seconds later it does 'Check for interrupting elements affecting "A" key'. I'm trying to understand if the event 'Check for interrupting...' 4 seconds later signifies if XCTest was late or if that occurred due to the app not being responsive. Can someone help explain these events?Thanks
Posted
by TI1.
Last updated
.