Created UITest for issue B43527 (#5898)

* Add UITest to issue B43527

* Cleanup of Bugzilla43527

* change unit test to use WaitForNoElement
This commit is contained in:
puppetSpace 2019-05-15 23:54:13 +02:00 коммит произвёл E.Z. Hart
Родитель e0714948ce
Коммит 341ddc758b
1 изменённых файлов: 11 добавлений и 0 удалений

Просмотреть файл

@ -39,5 +39,16 @@ namespace Xamarin.Forms.Controls.Issues
};
}
}
#if UITEST
[Test]
public void TestB43527UpdateTitle()
{
RunningApp.WaitForElement(q => q.Marked("Change Title"));
RunningApp.WaitForElement(q => q.Marked("Test Page"));
RunningApp.Tap(q => q.Marked("Change Title"));
RunningApp.WaitForNoElement(q => q.Marked("Test Page"));
}
#endif
}
}