static void route_settings_search_error(Device device, DateTime timeWhenUsed, string version) { AppSession appSession = new AppSession(device.DeviceId, appId, timeWhenUsed, version, deviceService); appSession.Open(); appSession.NavigateToSplash(); appSession.NavigateToMain(getValue <long>(appScreenTimeUsed)); appSession.NavigateToSettings(getValue <long>(appScreenTimeUsed)); appSession.NavigateToSearching(getValue <long>(appScreenTimeUsed)); appSession.Error("Unexcepted exception", "Searching", 292838833, 20201111, 22); appSession.Close(getValue <long>(appTimeUsed)); }
static void route_settings_search_cancel_crash(Device device, DateTime timeWhenUsed, string version) { AppSession appSession = new AppSession(device.DeviceId, appId, timeWhenUsed, version, deviceService); appSession.Open(); appSession.NavigateToSplash(); appSession.NavigateToMain(getValue <long>(appScreenTimeUsed)); appSession.NavigateToSettings(getValue <long>(appScreenTimeUsed)); appSession.NavigateToSearching(getValue <long>(appScreenTimeUsed)); appSession.ScreenMainActionCancelSearch(); appSession.Crash(); appSession.Close(getValue <long>(appTimeUsed)); }
static void route_normal_journey_upgrade(Device device, DateTime timeWhenUsed, string version) { AppSession appSession = new AppSession(device.DeviceId, appId, timeWhenUsed, version, deviceService); appSession.Upgrade(version); appSession.Open(); appSession.NavigateToSplash(); appSession.NavigateToMain(getValue <long>(appScreenTimeUsed)); appSession.ScreenMainActionSearch(); appSession.NavigateToSearching(getValue <long>(appScreenTimeUsed)); appSession.NavigateToResults(getValue <long>(appScreenTimeUsed)); appSession.ScreenResultActionViewProfile(); appSession.NavigateToProfile(getValue <long>(appScreenTimeUsed)); appSession.Close(getValue <long>(appTimeUsed)); }
static void route_normal_journey_feedback(Device device, DateTime timeWhenUsed, string version) { AppSession appSession = new AppSession(device.DeviceId, appId, timeWhenUsed, version, deviceService); appSession.Open(); appSession.NavigateToSplash(); appSession.NavigateToMain(getValue <long>(appScreenTimeUsed)); appSession.ScreenMainActionSearch(); appSession.NavigateToSearching(getValue <long>(appScreenTimeUsed)); appSession.NavigateToResults(getValue <long>(appScreenTimeUsed)); appSession.ScreenResultActionViewProfile(); appSession.NavigateToProfile(getValue <long>(appScreenTimeUsed)); appSession.Feedback(getValue <FeedbackRatingType>(Ratings), getValue <string>(feedbackMessage)); appSession.Close(getValue <long>(appTimeUsed)); }