I am working on a Coded UI test, and what I need to do is prompt the user for a range of excel cells, the test then passes those ranges as strings into the method and pulls the data from those cells. I've got the passing/pulling the data working fine, but when I try to bring up a console for them to enter the data, no console window/command prompt is showing when I try run or debug.
[TestMethod]
[TestCategory("Organizations")]
public void CreateTestOrganization()
{
Console.WriteLine("Enter range of cells of data required for creation.\n Min: A2, Max: AH11. USE ALL CAPS!");
Console.WriteLine("First cell: ");
string rangeOne = Console.ReadLine();
Console.WriteLine("Last cell: ");
string rangeTwo = Console.ReadLine();
BrowserWindow.Launch(uri);
CreateNewOrg cno = new CreateNewOrg(rangeOne, rangeTwo);
}