AndroidX Test Espresso 3.1.1, Runner 1.1.1, Rules 1.1.1, Monitor 1.1.1 AndroidTestOrchestrator 1.1.1, Core 1.1.0, Truth 1.1.0, JUnit 1.1.0 (2018-12-13)
This is the stable release of AndroidX Test 1.1.0
- Core
- Make ActivityScenario support activities which start another activity
 
AndroidX Test Espresso 3.1.1-beta01, Runner 1.1.1-beta01, Rules 1.1.1-beta01, Monitor 1.1.1-beta01 AndroidTestOrchestrator 1.1.1-beta01, Core 1.1.0-beta01 Truth 1.1.0-beta01, JUnit 1.1.0-beta01 (2018-12-06)
- Core
- New core-ktx kotlin extension artifact! Includes a kotlin-friendly ActivityScenario.launchActivity API
- New ActivityScenario API for launching activities with custom intents
- New ActivityScenario API for receiving an Activity result
- Make ActivityScenario closeable
 
- Espresso
- Modify withResourceNameMatcher and HumanReadables to be API 28 compatible.
- Update ReplaceTextAction's description to include the stringToBeSet
- Support Espresso in Robolectric paused looper mode.
 
- JUnit
- New ActivityScenarioRule API, for auto-launching and closing an Activity on test setup and teardown
- New junit-ktx kotlin extension artifact! Includes a kotlin-friendly ActivityScenarioRule API
 
- Runner
- Make -e package and -e testFile consistent in behavior when receiving packages
 
- Truth
- Add bool, parcelable, and parcelableAsType BundleSubject APIs
 
AndroidX Test Espresso 3.1.0, Runner 1.1.0, Rules 1.1.0, Monitor 1.1.0 AndroidTestOrchestrator 1.1.0, Core 1.0.0 Truth 1.0.0, JUnit 1.0.0 (2018-10-24)
- All
- Set minSdkVersion to 14 and targetSdkVersion to 28
 
- Espresso
- Fix withContentDescription to work with non-string types
- Add support for using Espresso on Robolectric
- Issue 72798625: Espresso ViewMatchers.withText doesn't work when textAllCaps is enabled
- Add support for injecting a sequence of motion events
 
- Intents
- Add beta API for retrieving list of intents. Intended for use with new truth assertions
 
- Runner
- Add support for instant apps
- Deprecate androidx.test.runner.AndroidJUnit4 and replace with androidx.test.ext.junit.runners.AndroidJUnit4
 
- Monitor
- Deprecate androidx.test.InstrumentationRegistry and replace with androidx.test.platform.app.InstrumentationRegistry and androidx.test.core.app.ApplicationProvider
 
- AndroidTestOrchestrator
- Only enable orchestrator coverage handling if both 'coverage' and 'coverageFilePath' arguments are passed.
- Only wait for debugger when the -debug is set but not for listing ATO test cases. A new orchestratorDebug flag was added for debugging orchestrator itself
 
- Core
- New artifact! Includes new APIs that support both local and on-device tests for:
- Retrieving context: ApplicationProvider
- Controlling activity lifecycles: ActivityScenario(beta)
- Builders for MotionEvent, PackageInfo
- Parceables utility class
 
 
- New artifact! Includes new APIs that support both local and on-device tests for:
- Truth
- New artifact! Includes custom truth subjects for Notification, Intent, Bundle, Parcelable, and MotionEvent
 
- JUnit
- New artifact! Includes JUnit runner class androidx.test.ext.junit.runners.AndroidJUnit4 that supports both local and on-device tests.
 
Espresso 3.0.2-beta1, Runner 1.0.2-beta1, Rules 1.0.2-beta1, Monitor 1.0.2-beta1, AndroidTestOrchestrator 1.0.2-beta1 (2018-04-16)
- Espresso
- Breaking API Change:
- It was brought up to our attention in Issue 64062890 that we were using Guava Optional in our public API. This was terrible oversight on our part . As a result, there is a breaking public API change in this release to address this issue. We introduced an ugly wrapper around Guava Optional class, named EspressoOptional which lives under "android.support.test.espresso.util" namespace. Developers that were using the leaked Guava Optional API need to change their imports and references to use EspressoOptional during the update to this new version. Sorry for the inconvenience this may cause.
 
- onView() and onData() APIs are now marked @CheckReturnValue to prevent errors
- Fixed espresso-core POM file to not pull in "rules" dependency, instead have espresso-intents POM pull it. This should be a NoOp change for developers since espresso-intents cannot be used without espresso-core.
- Issue 65486414: Espresso missing guava dependency
- Issue 65576174: Espresso IdlingResourceRegistry.sync causes second test fail
- Issue 65568629: Espresso.onIdle not using IdlingRegistry
- Issue 69333598: espresso 3.0.1 incompatible with play-services-auth:11.6.0 in android library module.
- Issue 64062890: Internal Optional type exposed by AdapterViewProtocol interface
- Issue 64091847: Espresso 3.0.0 should NOT depend on test runner
- Issue 73722050: espresso-contrib 3.0.2-alpha1 packages android.arch.{lifecycle/core} classes
 
- Breaking API Change:
- Espresso-remote
- This is a brand new artifact. We decoupled all of Espresso's multi process functionality outside of espresso-core artifact. This is cleaner and should significantly reduce espresso-core's overall size and method count.
 
- Runner
- Truncate stack trace if too large for a binder transaction. Since AJUR needs to report failures back to AM via a binder IPC, we need to make sure that we don't exceed the Binder transaction limit - which is 1MB per process.
- Issue 65828576: TestRequestBuilder crash when running test in class with @Ignore
- Issue 37057596: We don't handle failures in @BeforeClass
 
- Rules
- Ensure to release a reference on the activity under test after lifecycle changes. During the duration of the test one is now able to manipulate the Activity directly using the reference obtained from #getActivity() If the Activity is finished and relaunched, the reference returned by #getActivity() now always points to the current instance of the Activity.
- Issue 64389280: GrantPermissionRule doesn't provide WRITE_EXTERNAL_STORAGE
- Issue 37065965: ActivityTestRule leaks activity after orientation change
- Issue 75254050: ActivityTestRule doesn't update Activity instance during configuration changes
- Issue 64464625: Cannot do UI work in method finish() of Activity
 
- AndroidTestOrchestrator
- Pass -e coverage true -e coverageFilePath /sdcard/foo/flags to generate coverage files in the given location (The app must have permission to write to the given location). The coverage file naming convention now looks like thiscom.foo.Class#method1.ec. Note, this is only supported when running in isolated mode. Also, it cannot be used together with AndroidJUnitRunner'scoverageFileflag. Since the generated coverage files overwrite each other.
- Pass -e clearPackageDataflag if you wish the orchestrator to runpm clear context.getPackageName()andpm clear targetContext.getPackageName()commands in between test invocations. Note, the context in the clear command is the App under test context.
- Fixed - When running an empty test, aka. no @Test inside the target, the test result is different than legacy mode.
- Issue 72758547: Test Orchestrator causes Jacoco Coverage Data to be incomplete, only has last test run data
- Issue 67916042: Android Test Orchestrator : Execution stopped on Process crash due to OutOfMemory
- Issue 77752735: Orchestrator crashes for TransactionTooLargeException
- Issue 77549481: Test Orchestrator Should Run "pm clear" After Each Test
 
- Pass 
Espresso 3.0.2-alpha1, Runner 1.0.2-alpha1, Rules 1.0.2-alpha1, AndroidTestOrchestrator 1.0.2-alpha1 (2017-12-05)
- Espresso - Intentsnow has a callable response, allowing tests to execute after capturing a fired intent but before returning an- Instrumentation.ActivityResultobject.
 
- Runner - Split out monitor maven artifact - com.android.support.test:monitor:<version>, for users who need- MonitoringInstrumentationwithout test running and JUnit features.- If you use - com.android.support.test:runner:<version>, everything works as expected, because Gradle automatically pulls in the- monitormodule as a dependency of the- runnermodule.
- Added flag - newRunListenerOrderMode. When- true, user-defined listeners run before default listeners. (We expect this behavior to eventually become the default.)
- Issue 65828576: - TestRequestBuildercrashes when running tests in a class annotated with- @Ignore(standalone without test running or JUnit features).
 
- AndroidTestOrchestrator - Now handles empty tests in the same way as non-orchestrated
AndroidJUnitRunner.
- Orchestrator can now handle very large standard output from
AndroidJUnitRunner.
 
- Now handles empty tests in the same way as non-orchestrated
Espresso 3.0.1, Runner 1.0.1, Rules 1.0.1, AndroidTestOrchestrator 1.0.1 (2017-08-28)
- Espresso - Added a IdlingPolicyoption to suppressonTimeout()when a step debugger is attached to the VM.
- Issues 64024656, 64247586,
and 64525881: Don't report failures for
unsuccessful class loading unless a user is loading specific classes by
including the -eclass runner argument.
- Issue 64877246: Add missing classes to sources JAR file.
 
- Added a 
- Runner - Simplified ShardingFilterlogic.
- Issue 65025743: @RequiresDevicefilter now supports FTL emulators.
 
- Simplified 
- AndroidTestOrchestrator - Don't duplicate report failures. When a test process crashes after failing, now only one failure is reported for the test.
- Fixed Javadoc for Orchestrator.
- Tests now indicated as missed if the remote process crashes.
- Now handles ignored test cases.
- Now excludes ignored test cases from footer to match legacy results.
- Fixed runtime permission issues. Test reports are now written to SD card on Android 7.0 (API level 24) and higher.
 
Espresso 3.0.0, Runner 1.0.0, Rules 1.0.0, AndroidTestOrchestrator 1.0.0 (2017-07-25, Announcement)
Breaking changes
- All artifacts
- Dropping support for API levels lower than 15 – however, the min SDK still points to API level 9 to give users time to upgrade
 
- Espresso
- The deprecated
android.support.test.espresso.contrib.CountingIdlingResourceclass has been deleted and moved toandroid.support.test.espresso.idling.CountingIdlingResource- Use
getInstance().register()instead ofregisterIdlingResources()
 
- Use
- Guava is now jarjar'd away to a
different "internal" namespace – if you're accidentally using Guava
API through Espresso namespaces, you might see breakages
- Remove any references to shaded Guava (.core.deps.guava.)
- Upgrade your Support Library version to 25.4.0 or higher
 
- Remove any references to shaded Guava (
 
- The deprecated
Known issues
- AndroidTestOrchestrator
- -e numShardsand- -e shardIndexrunner arguments aren't currently supported
- Parameterized tests aren't currently supported
 
New features
- Espresso
- New Multiprocess Espresso
Support on API 26 for espresso-coreandespresso-web, but notespresso-contrib
- New lightweight
IdlingRegistryAPI- Published as part of
com.android.support.test.espresso:espresso-idling-resource:3.0.0
- Deprecated methods:
 
- Published as part of
- New API to help synchronize against Executors- New maven artifact:
com.android.support.test.espresso.idling:idling-concurrent:3.0.0
- Contains
IdlingScheduledThreadPoolExecutorandIdlingThreadPoolExecutorclasses
 
- New maven artifact:
- New API to help synchronize against network requests and responses.
- New maven artifact:
com.android.support.test.espresso.idling:idling-net:3.0.0
- Contains UriIdlingResourceclass
 
- New maven artifact:
- New espresso-coreview matchers:- hasBackground()matches against a- Viewobject's background drawable resource
- hasTextColor()matches against a- TextViewobject's color
 
- New view action methods:
- Enhanced scrollTo()view action to work with descendants ofListView
- repeatedlyUntil()– Performs the given- ViewActionon a view until the view matches the desired- ViewMatchers
 
- Enhanced 
- New Espresso methods:
- pressBackUnconditionally()– Similar to- pressBack()but doesn't throw an exception when Espresso navigates
- noActivity()– Removes the need of waiting for an activity before performing a- ViewActionor- ViewAssertion
- onIdle()– Loops the main thread until the app goes idle
- onIdle(Callable<T>)– Same as- onIdle(), but takes an additional- Callableas a parameter, which is executed after the app goes idle
 
- webScrollIntoView()– New- espresso-webatom that allows you to scroll inside a- WebView
 
- New Multiprocess Espresso
Support on API 26 for 
- Runner
  - 
      
      InterceptingActivityFactoryandSingleActivityFactory– Provides a facility of testing an activity in isolation from the outer world by overriding methods likestartService()andsendBroadcast()
- 
      Add support for using JUnitParams
      with 
      AndroidJUnitRunner
- 
      Start handling 
      @UiThreadTeston the core test runner level and deprecate@UiThreadTestRule– This enables the use of@UiThreadTestannotation directly on methods annotated with@Beforeand@After
- 
      
      @SdkSupressannotation now supportsmaxSdkVersionvalue (Issue 37067792)
- 
      -e classLoader– Provide the ability to pass class loaders using runner args
- 
      -e filter– Add support for custom JUnit filters to be specified using runner args
- 
      -e runnerBuilder– Allows developers to provide their own implementations ofRunnerBuilderthat can determine whether and how they can run against a specific class
 
- 
      
      
- Rules
- ProviderTestRule– New API to test- ContentProviderobjects
- getActivityResult()and- ActivityResultMatchers– New API to retrieve the activity result of an activity that has called- setResult()
 
- AndroidTestOrchestrator
- Android Test Orchestrator
provides a new way of collecting and running tests, with an emphasis on
correctness and isolation. Orchestrator is an independent instrumentation
process, spawning one instrumentation runner process for each test and
collecting the results.
- Application crashes take down the runner instrumentation but not the orchestrator, allowing your test suite to continue
- Requires installation of the orchestrator APK –
'com.android.support.test:orchestrator:1.0.0'
- Version 1.0 has a command-line interface only; integration with Android Studio and Firebase Test Labs is planned
 
 
- Android Test Orchestrator
provides a new way of collecting and running tests, with an emphasis on
correctness and isolation. Orchestrator is an independent instrumentation
process, spawning one instrumentation runner process for each test and
collecting the results.
Bug fixes
- Espresso
- Improved root view synchronization to significantly reduce flakiness
- Fix corruption of IdlingResourceRegistry
- Better synchronization against
IdlingResourceobjects
- Issue 37132680: Espresso doesn't wait for dialog creation to complete before performing the next action
- Issue 37103280: Espresso should ship ProGuard consumer rules so consumers aren't required to add them
- Issue 37094726: Espresso Intents contains unnecessary application label
- Issue 37093953: Espresso: No available check for null/empty error text
- Issue 37071776: espresso-coreembeds Guava's.pomfiles
- Issue 37062612: NPE in
release()
- Issue 37063389: Having Guava and espresso-webasandroidTestdependencies doesn't compile
- Issue 37070533: Add support for
NavigationViewin Android Design Support Library
 
- Runner
  - 
      Fix the ability to use 
      @UiThreadTestin combination with@Test(timeout = 123)
- Fixed -e notClassrunner arg
- Fixed -e logto support JUnit3 and JUnit4 test suites, as well asParameterizedandEnclosedrunners
- Issue 37663530: Wait for all activities to finish before and after each test method
- Issue 37132680: Espresso doesn't wait for dialog creation to complete before performing the next action
- 
      Issue 37123213:
      
      @RequiresDeviceignored on x86_64 ABI
- 
      Issue 37101485: Some manifest-provided
      arguments for 
      AndroidJUnitRunner—such as test size, annotation and debug—are ignored
- Issue 37082857: Espresso semi-parallel test execution fails on static objects
- 
      Issue 37063396: Context not initialized
      with ProviderTestCase2(causesNullPointerException)
 
- 
      Fix the ability to use 
      
- Rules
- Fixed ActivityTestRulelifecycle to unify behavior across regular and lazyActivityTestRuleinitialization
- Issue 37079943: Fix
ServiceTestRuleto allow re-binding
- Issue 37109342: Add
getActivityResult()andActivityResultMatchers
 
- Fixed 
- UiAutomator
- setUiAutomationFlags()for use with- UiAutomation.FLAG_DONT_SUPPRESS_ACCESSIBILITY_SERVICES– this allows- UiAutomatorto be used while other accessibility services are running
- Issue 37082813:
setText()on emptyEditTextobjects throwsNullPointerExceptionif API level is 19 or lower
 
Other notable changes
- Binaries are now published via Google Maven
- Reduced size of espresso-coreandespresso-webJAR files – embedded dependencies now have ProGuard applied
- All .aarfiles now include ProGuard rules
- Add proguard_library.cfgfiles to released artifacts
- Tapperinterface has a new version of- sendTap()to implement
External contributions
- Espresso
- Runner
- Rules
Espresso 2.2.2, Runner/Rules 0.5 (2016-02-22, silent release)
New features
- espresso
- Issue 194253: Add support for NavigationView in android support design library
- Added checks for enabled animations and transitions
- New ViewMatcherAPI:withResourceName()
 
Bug fixes
- espresso
- Issue 195331: espresso-core embeds guava’s pom files
- Moved counting idling resource out of espresso-contrib
 
- rules
- Issue 187249: NPE in Intents.release()
 
- Issue 187249: NPE in 
- runner
- Issue 196066: The -e log trueargument inAndroidJUnitRunnerdoes not bypass actual test
- Wait for debugger in onCreate()of the runner
- Moved all supported test annotation out of platform and into ATSL
- Removed the stack trace dump about no JSBridge
- Fixed AndroidAnnotatedBuilder
 
- Issue 196066: The 
Other notable changes
- ActivityTestRule,- UiThreadTestRule,- IntentsTestRuleand- ServiceTestRuleare out of beta
- Add code style settings file for uniform code formatting
Espresso 2.2.1, Runner/Rules 0.4 (2015-09-15)
New features
- rules
- Added new IntentsTestRuleconstructor to be fully compatible withActivityTestRule
 
- Added new 
- runner
- Added special case multidex installation for API levels 15 and lower
- Added exclude filters to class and package:
- Running all tests except those in a particular class:
adb shell am instrument -w -e notClass com.android.foo.FooTest
- Running all but a single test:
adb shell am instrument -w -e notClass com.android.foo.FooTest#testFoo
- Running all tests except a particular package:
adb shell am instrument -w -e notPackage com.android.foo.bar
 
- Running all tests except those in a particular class:
 
External contributions
- espresso
- 157911: Add view matcher for input type on an
EditTextobject
- 157912: Add view matcher for matching error text on
an EditTextobject
- 150674: Add DrawerActionssupport for drawers with arbitrary gravity
- 150744: DrawerActionsno longer leakparentListener
- 153303: Gravity specified on the "is the drawer open or closed" checks
- 157910: Add DrawerLayoutopen and close action factories
 
- 157911: Add view matcher for input type on an
Bug fixes
- espresso
- ViewActions.closeSoftKeyboard()now ensures that soft keyboard is completely gone
- Fixed synchronization issue with Espresso's Espresso.pressBack()method on API level 21 and higher
- Fixed synchronization for keyboard closure animations on API level 23
 
- rules
- Fixed ServiceTestRuleon API level 23,startService()must always be called with an explicitIntent
 
- Fixed 
- runner
- Fixed broken gradle JaCoCosupport
- Fixed broken test sharding support
- Fixed inconsistent state in test runner after JUnit3style test timeouts
 
- Fixed broken gradle 
Other notable changes
- Javadoc fixes and error message improvements
- Ignore suite()methods and don't ignore init errors when using method filters
Espresso 2.2 / ATSL 0.3 (2015-06-09)
New features
- espresso-web 2.2
- New WebViewsupport
 
- New 
- espresso-core 2.2
- Migrated to use dagger v2
- Migrated to use hamcrest v1.3
 
- espresso-contrib 2.2
- Accessibility checks
- DrawerActionsgravity support
 
- rules 0.3
- DisableOnAndroidDebugrule
 
- runner 0.3
- Upgrade from JUnit v4.10 to JUnit v4.12
- Migrated to use Hamcrest v1.3
 
Bug fixes
- Fixed DrawerActionsleakingParentListener
- Assumption failure is now treated as an ignore test rather than a failing test
- Fixed MonitoringInstrumentationleaking activity instances throughExecutorService
- Fixed for orphan activities being stuck in stopped stage
- Update Until.scrollFinished()to return true if no scroll events were generated. Guard against potential NPE inUiObject2#setText().
Espresso 2.1, Test Runner/Rules 0.2 and UIAutomator 2.1.0 (2015-04-21)
Breaking changes
- Test runner artifact split into two and the name changed from
com.android.support.test:testing-support-lib:0.1tocom.android.support.test:runner:0.2andcom.android.support.test:rules:0.2.
New features
- espresso-intents: A Mockito-like API that enables hermetic inter-activity
testing by allowing test authors to verify and stub outgoing intents
- IntentsTestRule: extends- ActivityTestRule, initialized and releases Espresso-Intents in functional UI tests
 
- espresso-core
- ViewActions: Added ability to run global assertions prior to running actions. This is useful for other frameworks that build on top of Espresso to validate state of the view hierarchy while existing Espresso test suite is executed
- ViewMatchers.withContentDescription()- resIdoverload
 
- rules
- ActivityTestRule: This rule provides functional testing of a single activity
- UiThreadRuleand- UiThreadTestannotations: This rule allows the test method annotated with- UiThreadTestto execute on the application's main thread (or UI thread)
- ServiceTestRule: This rule provides functional testing of a service
 
- runner
- ApplicationLifecycleCallback: Callback for monitoring application lifecycle events
- All runner arguments can now be also specified in the Android manifest
file using a <meta-data>tag
 
- UIAutomator
- UiDevice.dumpWindowHierarchy()can now accept a- Fileor an- OutputStream
 
Bug fixes
- espresso
- Cursor matcher now returns falseif the column wasn't found so Hamcrest can proceed to the next cursor
- NullPointerExceptionwith- PreferenceMatchers- withTitleno longer occurs
- Unregistering idling resource no longer causes Espresso to think we have busy idling resources
- Updated Support Annotations version used by Espresso Contrib
 
- Cursor matcher now returns 
- runner
- AndroidJUnit4now skips tests with failing assumptions
 
- UIAutomator
- Run watchers to prevent StaleObjectException
 
- Run watchers to prevent 
Other notable changes
- Add better error message when we can't typeText with a non-Latin string
UIAutomator 2.0 (2015-03-12)
UI Automator is now based on Android Instrumentation, and you can build and run
tests using the ./gradlew connectedCheck command.
Espresso Version 2.0, Test Runner 0.1 (Released on: 2014-12-19)
Breaking changes
- Espresso has moved to a new namespace, from
android.support.test.espressotoandroid.support.test.espresso
- Espresso artifacts have been renamed
- espresso-1.1.jaris now- espresso-core-release-2.0.jar
- IdlingResourceinterface has been moved into a separate library:- espresso-idling-resource-release-2.0.jar
- CountingIdlingResourcenow resides in- espresso-contrib-release-2.0.jar(as it always should have)
 
- Optional (a guava dependency) has been removed from the public API in order to
support repackaging the guava dependency and avoid DEX collision (a major
source of development pain). Affected methods include the following:
- ViewAssertion.check()
- HumanReadables.getViewHierarchyErrorMessage()
 
New features
- Actions
- ViewActions- replaceText()
- openLink()
- Swipe up and down
 
- espresso-contrib
- RecyclerViewActions: Handles interactions with- RecyclerViews
- PickerActions: Handles interactions with- Dateand- Timepickers
 
 
- Matchers
- RootMatchers- isPlatformPopup()
 
- ViewMatchers- isJavascriptEnabled()
- withSpinnerText()
- withHint()
- isSelected()
- hasLinks()
 
- LayoutMatchers: Matchers for i18n-related layout testing
- CursorMatchers: A collection of matchers for- Cursorobjects
 
- Assertions
- PositionAssertions, including- isLeftOf()and- isAbove(): Colleciton of- ViewAssertionsfor checking relative position of elements on the screen
- LayoutAssertions: Assertions for i18n-related layout testing
 
- Test app: Many new sample activities/tests
- Other
- Espresso.unregisterIdlingResources()and- Espresso.getIdlingResources(): Provides additional flexibility for working with- IdlingResources
- ViewInteraction.withFailureHandler(): Allows overriding the failure handler from- onView()
- onData()support for- AdapterViewsbacked by- CursorAdapters
 
Bug fixes
- ViewMatchers.isDisplayed()matches views that take up the entire screen, but are no longer less than 90% displayed
- Performing swipe action call to DrawerActions.openDrawer()no longer results inIdlingResourceTimeoutException
Other notable changes
- Switched from building with Maven to Gradle
- Moved Espresso dependencies (Guava, Dagger, Hamcrest) out of the way to avoid DEX collisions
- Changed to return success or failure when registering and unregistering idling resources
- Lollipop support: Place message.recycle()behind an interface to account for version-related changes
- Switched target SDK level to 21 – mostly affects the test app
Version 1.1 (Released on: 2014-01-08)
Espresso
- New swipeLeftandswipeRightViewActions
- Multi-window support: An advanced feature that enables picking the target window on which Espresso should run the operation
- Improvements to TypeTextAction: Allows typing text into a pre-focused view, which makes it easier to append text
- Numerous bug fixes
Espresso Contrib Library
- This new library contains features that supplement Espresso, but aren't part of the core library
- New DrawerActionsfor operating onDrawerLayout: Has a dependency on Android Support Library, hence we are keeping it outside of the core Espresso library
Sample Tests
- These tests have been relocated to live in the same package as the test app
- Maven POMs have been fixed to remove duplicate guava deps, so mvn installshould work now
