/// <summary>
 /// Uploads the file to the file manager to the default folder (the folder that was selected before clicking Upload).
 /// To upload the file to a specific folder make sure that the folder is selected before using this method.
 /// </summary>
 /// <param name="FilePath">The path for the file that will be added.</param>
 public void UploadFile(string FilePath)
 {
     UploadImage.ClickNoWait();
     SelectFile(FilePath);
     UploadSelectedFileLink.ClickNoWait();
 }