こちらの回答に従って、特定のスピナーテキストが選択されているかどうかを確認してみます。スピナーがダイアログに表示されるので、試しました:
onView(withId(R.id.package_spinner)).inRoot(isDialog()).check(matches(withSpinnerText(containsString("sachet"))));
ただし、これは機能せず、次のエラー メッセージが表示されます。
android.support.test.espresso.base.DefaultFailureHandler$AssertionFailedWithCauseError: 'テキスト付き: 「サシェ」を含む文字列' が選択したビューと一致しません。予想: テキスト付き: 「小袋」を含む文字列 得た: "AppCompatSpinner{id=2131624039, res-name=package_spinner, visibility=VISIBLE, width=620, height=75, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, root-is- layout-requested=false, has-input-connection=false, x=0.0, y=75.0, child-count=1}"
「is-selected=false」は、見つかったスピナーが選択されていないことを意味しますか? これは、API 18 を使用して実際のデバイス (エミュレーターではない) で実行されています。Espresso の実行中および手動でのテスト中に、スピナーは正しく「サシェ」に設定されています。エスプレッソに問題があるのはなぜですか?
これが関連しているかどうかはわかりませんが、スピナーは次のタイプのオブジェクト用です。
public class PackageType {
private int id;
private String name;
private final Context ctx;
public PackageType(Context context) { this.ctx=context; }
public PackageType(String name, Context context) {
super();
this.ctx = context;
setName(name);
}
// setters
public void setId(int i) { this.id = i; }
public void setName(String u) {
this.name = u;
}
// getters
public int getId() { return id; }
public String getName() { return name; }
}
スピナーアダプターは次のようになります。
class SpinnerPackageTypeAdapter extends ArrayAdapter<PackageType> {
private final List<PackageType> packageTypes;
private final Context mContext;
public SpinnerPackageTypeAdapter(Context context, int resource, List<PackageType> packageTypes) {
super(context, resource, packageTypes);
this.mContext = context;
this.packageTypes = packageTypes;
}
public PackageType getItem(int position) { return packageTypes.get(position); }
public long getItemId(int position) { return position; }
// this is for the passive state of the spinner
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// use dynamically created TextView, but could reference custom layout
TextView label = new TextView(mContext);
label.setTextColor(Color.BLACK);
label.setTextSize(mContext.getResources().getDimension(R.dimen.list_row_font_size));
label.setGravity(Gravity.CENTER);
label.setText(getItem(position).getName());
return label;
}
// this is for the chooser dropped down spinner
@Override
public View getDropDownView(int position, View convertView, ViewGroup parent) {
TextView label = (TextView) View.inflate(mContext,R.layout.row_spinner,null);
label.setText(getItem(position).getName());
return label;
}
}