0
どのようにしてSelendroid
にテストする特定のアプリを添付しますか? 私は事実上どこにでも表示されているテストアプリの例を見てきましたが、うまくいけば、そのAPKをどこに置く必要がありますか? 特定のアプリケーションをSelendroidテストスイートにどのように添付すればよいですか?
SelendroidConfiguration config = new SelendroidConfiguration();
config.addSupportedApp("io.selendroid.testapp:0.17.0");
SelendroidLauncher selendroidServer = new SelendroidLauncher(config);
selendroidServer.launchSelendroid();
DesiredCapabilities caps = io.selendroid.common.SelendroidCapabilities.android();
SelendroidCapabilities cap = new SelendroidCapabilities("io.selendroid.testapp:0.17.0");
しかし、私はエラーを受信し続ける: は、私はこのようなアプリのIDを使用しようとしました
SessionNotCreatedException
を。これを引き起こしているのは何ですか? テストで
Java
プロジェクトに特定のアプリを追加するにはどうすればよいですか?