mirror of
https://github.com/element-hq/element-x-ios.git
synced 2025-03-10 21:39:12 +00:00

* Rename onboarding and login user/pass accessibility ids. * Refactor remaining server change accessibility IDs * Avoid accessibilityIdentifier spreading to all decorations on the textBox. Required because otherwise there are multiple items tagged with the accessibilityId which means we can't click on "the" item. * Move all accessibility identifiers to `AccessibilityIdentifiers.swft` - use same naming convention on all of them - remove the unused ones - fix build errors in integration tests and invalid identifiers (still broken until autodiscovery lands on rosa) --------- Co-authored-by: Stefan Ceriu <stefanc@matrix.org>
64 lines
1.5 KiB
YAML
64 lines
1.5 KiB
YAML
name: IntegrationTests
|
|
|
|
schemes:
|
|
IntegrationTests:
|
|
analyze:
|
|
config: Debug
|
|
archive:
|
|
config: Release
|
|
build:
|
|
targets:
|
|
IntegrationTests: all
|
|
profile:
|
|
config: Release
|
|
run:
|
|
config: Debug
|
|
disableMainThreadChecker: false
|
|
environmentVariables:
|
|
INTEGRATION_TESTS_HOST: ${INTEGRATION_TESTS_HOST}
|
|
INTEGRATION_TESTS_USERNAME: ${INTEGRATION_TESTS_USERNAME}
|
|
INTEGRATION_TESTS_PASSWORD: ${INTEGRATION_TESTS_PASSWORD}
|
|
test:
|
|
config: Debug
|
|
disableMainThreadChecker: false
|
|
gatherCoverageData: true
|
|
coverageTargets:
|
|
- ElementX
|
|
targets:
|
|
- IntegrationTests
|
|
|
|
targets:
|
|
IntegrationTests:
|
|
type: bundle.ui-testing
|
|
platform: iOS
|
|
|
|
dependencies:
|
|
- target: ElementX
|
|
- package: MatrixRustSDK
|
|
- package: DeviceKit
|
|
- package: DTCoreText
|
|
- package: KeychainAccess
|
|
- package: Kingfisher
|
|
- package: SwiftyBeaver
|
|
- package: SwiftState
|
|
- package: GZIP
|
|
- package: Sentry
|
|
- package: Collections
|
|
|
|
info:
|
|
path: ../SupportingFiles/Info.plist
|
|
|
|
settings:
|
|
base:
|
|
PRODUCT_NAME: IntegrationTests
|
|
PRODUCT_BUNDLE_IDENTIFIER: ${BASE_BUNDLE_IDENTIFIER}.integration.tests
|
|
debug:
|
|
release:
|
|
|
|
sources:
|
|
- path: ../Sources
|
|
- path: ../SupportingFiles
|
|
- path: ../../ElementX/Sources/Other/AccessibilityIdentifiers.swift
|
|
- path: ../../ElementX/Sources/Other/Extensions/XCUIElement.swift
|
|
- path: ../../ElementX/Sources/Other/Extensions/NSRegularExpresion.swift
|