/// <summary>
 /// Get the content from the target container label
 /// </summary>
 /// <returns>the label's content</returns>
 public string GetTargetContainerContent()
 {
     return TargetContainerLabel.Wait(3).Text; ;
 }
 /// <summary>
 /// Get the content from the target container label
 /// </summary>
 /// <param name="fakeData">fake data</param>
 /// <returns>the label's content</returns>
 public string GetTargetContainerContent(string fakeData = null)
 {
     TargetContainerLabel.Wait(3);
     TargetContainerLabel.Text = fakeData;
     return TargetContainerLabel.Text; ;
 }