Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
言語にとらわれない Robotium テストを書くことは可能ですか? たとえば、PreferenceActivity を使用する場合、定義上、それへの R.id 参照を取得する方法はありません。
これをサポートするメカニズムはありますか?あるいは、Robotium が String ファイルから読み取る方法はありますか?
ありがとうございました。
現在のアクティビティにアクセスするだけで、Robotium テストの application-under-test の strings.xml ファイルを読み取ることができます。
String myString = getActivity().getString(R.string.my_string);