[UI Test]

Hi all, here are some updates regarding our UI test:
1. Enable multiple testrail’s test case ids mapping for one test

@Test
@TestRail(testCaseIds = intArrayOf(707231, 707232, 707233))
fun shouldUpdateDestinationAirport_whenSelectDestinationAirport() { }

2. Add a screen record for a specific test case by registering the test case name in the test watcher

@get:Rule
val testWatcherRule = UITestWatcher(listOf("test_case1", "test_case2"))

3. Bitrise Custom Variable
In the previous post here, we have a custom variable POST_TO_CHANNEL. Now, it has been removed, and updated to SLACK_CHANNEL_NAME where you can input your channel name or username to get notified for the report (default: not report to anywhere).

SLACK_CHANNEL_NAME: #android-flight-eng-notif or @username or <channel_id>

Please find the detail in this doc.

Thank you.