I am writing an automated test suite for my WP7 app. Currently it fails when I try to execute several commands in a row, where one command is a navigation command and second command an email task.
So the question is how do I determine if WP7 is in progress of navigating between two pages?
Edit:
Command itself is created not in the code behind but in a separate class.
Code looks like this:
Command 1:
private void BuildContactCommand()
{
var contactCmd = new RelayCommand(() =>
// Command
{
var ecTask = new EmailComposeTask();
// composing message here
// Command fails here
ecTask.Show();
},
// Can Execute
() => !_isNavigating
);
_appCmdProvier.Register(contactCmd, CommandsNames.ContactSupportCmd);
}
Command 2:
private void BuildNavigateToDetailsCommand()
{
var navToDetailsCmd = new RelayCommand<string>
(
appId => NavigateTo("/Pages/AppDetails/AppDetailsPage.xaml?appId=" + appId)
);
_appCmdProvier.Register(navToDetailsCmd, CommandsNames.NavigateToDetailsCmd);
}