Skip to content

New actions and assertions

Compare
Choose a tag to compare
@rocboronat rocboronat released this 31 Mar 10:54
· 283 commits to master since this release

Check that EditText has hint #36

assertHint(R.id.edittext, R.string.hint);
assertHint(R.id.edittext, "Hint");

Tap a button of a Recycler's row #32

clickRecyclerViewItemChild(R.id.recycler, 3, R.id.button);
clickRecyclerViewItemChild(R.id.recycler, 3, "Button");

Tap a RadioButton using its position #30

clickRadioButtonPosition(R.id.radiogroup, 42);