コード例 #1
0
        public void AddingAProjectBeforeSavingPersistsTheProject()
        {
            const string description = "Field Research ";

            app.EnterText(description);

            var projectName = "Meme Production";

            app.CreateProjectInStartView(projectName);

            app.Tap(StartTimeEntry.DoneButton);
            app.Tap(Main.StopTimeEntryButton);

            app.PullToRefresh();

            app.WaitForElement(e => e.All().Property("text").Contains(projectName));
        }