Kaspresso是一个基于Espresso、UIAutomator和Kakao的强大UI测试框架

网友投稿 883 2022-11-01

Kaspresso是一个基于Espresso、UIAutomator和Kakao的强大UI测试框架

Kaspresso是一个基于Espresso、UIAutomator和Kakao的强大UI测试框架

Kaspresso

Kaspresso is a great framework for UI testing. Based on Espresso and UI Automator, Kaspresso provides a wide range of additional amazing features, such as:

100% stability, no flakiness.Significantly faster execution of UI Automator commands. With Kaspresso, some UI Automator commands run 10 times faster!Excellent readability due to human DSL.Incredible mechanism of interceptors that allows you to catch all actions and assertions in one place.Full logging.Ability to call ADB commands.UI tests writing philosophy, implemented with DSL.Features screenshotting.

And many more!

Capabilities of Kaspresso

Readability

We like the syntax that Kakao applies to write UI tests. This wrapper over Espresso uses the Kotlin DSL approach, that makes the code significantly shorter and more readable. See the difference:

Espresso:

@Testfun testFirstFeature() { onView(withId(R.id.toFirstFeature)) .check(ViewAssertions.matches( ViewMatchers.withEffectiveVisibility( ViewMatchers.Visibility.VISIBLE))) onView(withId(R.id.toFirstFeature)).perform(click())}

Kakao:

@Testfun testFirstFeature() { mainScreen { toFirstFeatureButton { isVisible() click() } }}

We used the same approach to develop our own wrapper over UI Automator, and we called it Kautomator. Take a look at the code below:

UI Automator:

val instrumentation: Instrumentation = InstrumentationRegistry.getInstrumentation()val uiDevice = UiDevice.getInstance(instrumentation)val uiObject = uiDevice.wait( Until.findObject( By.res( "com.kaspersky.kaspresso.sample_kautomator", "editText" ) ), 2_000)uiObject.text = "Kaspresso"assertEquals(uiObject.text, "Kaspresso")

Kautomator:

MainScreen { simpleEditText { replaceText("Kaspresso") hasText("Kaspresso") }}

Since Kakao and Kautomator provide almost identical APIs, you don’t have to care about what is under the hood of your tests, either Espresso or UI Automator. With Kaspresso, you write the same tests for both.

Read about Kakao and Kautomator in details.

However, Kakao and Kautomator themselves don't help you to see the relation between the test and the corresponding test case. Also, a long test often becomes a giant piece of code that is impossible to split into smaller parts. That's why we have created an additional Kotlin DSL that allows you to read your test more easily.

See the example below:

@Testfun shouldPassOnNoInternetScanTest() = beforeTest { activityTestRule.launchActivity(null) // some things with the state }.afterTest { // some things with the state }.run { step("Open Simple Screen") { MainScreen { nextButton { isVisible() click() } } } step("Click button_1 and check button_2") { SimpleScreen { button1 { click() } button2 { isVisible() } } } step("Click button_2 and check edit") { SimpleScreen { button2 { click() } edit { flakySafely(timeoutMs = 7000) { isVisible() } hasText(R.string.text_edit_text) } } } step("Check all possibilities of edit") { scenario( CheckEditScenario() ) } }

Stability

Sometimes your UI test passes ten times, then breaks on the eleventh attempt for some mysterious reason. It’s called flakiness.

The most popular reason for flakiness is the instability of the UI tests libraries, such as Espresso and UI Automator. To eliminate this instability, Kaspresso uses DSL wrappers and interceptors.

Also, some Kaspresso features can help you resolve a lot of typical problems in UI testing.

UI test libraries acceleration

Let’s watch some short video that shows the difference between the original UI Automator (on the right) and the accelerated one (on the left).

Here is a short explanation of why it is possible.

Interceptors

We developed Kaspresso behavior interceptors on the base of Kakao/Kautomator Interceptors to catch failures.

Thanks to interceptors, you can do a lot of useful things, such as:

add custom actions to each library operation like writing a log or taking a screenshot;overcome flaky library operations by re-running failed actions, scrolling the parent layout or removing the android system dialog;

and many more (see the manual).

Writing readable logs

Kaspresso writes its own logs, detailed and readable:

Ability to call ADB commands

Espresso and UI Automator don't allow to call ADB commands from inside a test. To fix this problem, we developed AdbServer (see the repository on GitHub).

In Kaspresso, you can call ADB and CMD commands using the AdbServer class (see the manual).

Ability to work with Android System

You can use Kaspresso classes to work with Android System.

For example, with the Device class you can:

push/pull files,enable/disable network,give permissions like a user does,emulate phone calls,take screenshots,enable/disable GPS,set geolocation,enable/disable accessibility,change the app language,collect and parse the logcat output.

(see more about the Device class).

Features screenshotting

If you develop an application that is available across the world, you have to localize it into different languages. When UI is localized, it’s important for the translator to see the context of a word or a phrase, that is the specific screen.

With Kaspresso, translators can automatically take a screenshot of any screen. It’s incredibly fast, even for legacy screens, and you don't have to refactor or mock anything (see the manual).

Configurability

You can tune any part of Kaspresso (read more)

Philosophy

The tool itself, even the perfect one, can not solve all the problems in writing UI tests. It’s important to know how to write tests and how to organize the entire process. Our team has great experience in introducing autotests in different companies. We shared our knowledge on writing autotests.

Wiki

For all information check Kaspresso wiki

Integration

To integrate Kaspresso into your project:

If the jcenter repository does not exist, include it to your root build.gradle file:

allprojects { repositories { jcenter() }}

Add a dependency to build.gradle:

androidTestImplementation 'com.kaspersky.android-components:kaspresso:1.1.0'

If you are still using the old Android Support libraries, we strongly recommend to migrate to AndroidX.

The last version with Android Support libraries is:

androidTestImplementation 'com.kaspersky.android-components:kaspresso:1.0.1-support'

Support

Ask your question on Telegram:

In English: t.me/kaspresso_enIn Russian: t.me/kaspresso

Contribution

Kaspresso is an open source project, so you are welcome to contribute (see the Contribution Guidelines).

License

Kaspresso is available under the Apache License, Version 2.0.

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Android启动任务调度框架,用于缩短app启动时间
下一篇:geometry-processing-js 用于Web上几何处理的快速通用框架
相关文章

 发表评论

暂时没有评论,来抢沙发吧~