Combot is a Compose testing library designed to simplify testing and automation of UI components in Jetpack Compose. It allows developers to easily write tests for Compose components.
Implementation is inspired by modern Compose testing patterns and provides a straightforward API to interact with UI elements programmatically.
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// Add for your project
maven { url = uri("https://jitpack.io") }
}
}implementation("com.github.GabrielBrasileiro:combot:x.x.x")[versions]
combot = "x.x.x"
[libraries]
combot = { group = "com.github.GabrielBrasileiro", name = "combot", version.ref = "combot" }dependencies {
implementation(libs.combot)
}For full documentation, examples, and guides on how to use Combot, please visit:
https://gabrielbrasileiro.dev/combot
This site includes:
- Quick start examples
- API reference
- Advanced usage patterns
- Tips for testing Compose UI components
