mirror of
https://github.com/appium/appium.git
synced 2026-05-07 03:19:28 -05:00
Making .NET app finder for forgiving so it can use an app already installed in the simulator
This commit is contained in:
@@ -69,7 +69,8 @@ namespace SimpleTest
|
||||
string appPath = null;
|
||||
foreach(string path in appFinder.StandardOutput.ReadToEnd().Split(new char[] {'\n','\r'}))
|
||||
{
|
||||
if (!path.Trim().EndsWith(".dSYM") && path.Contains("simulator"))
|
||||
if (!path.Trim().EndsWith(".dSYM") && path.Contains("" +
|
||||
"imulator"))
|
||||
{
|
||||
appPath = path.Trim();
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user