/// <summary>
 /// collapse passage properties
 /// </summary>
 public void CollapsePassageProperties()
 {
     PassagePropertiesContainer.FakeAttributeClass = "display: block;";
     if (PassagePropertiesContainer.WaitUntilExists(3).GetAttribute("class").Equals("block"))
     {
         PassagePropertiesLink.Wait(3).Click();
     }
 }
 /// <summary>
 /// expand passage properties
 /// </summary>
 public void ExpandPassageProperties()
 {
     PassagePropertiesContainer.FakeCssValueStyle = "display: none;";
     if (PassagePropertiesContainer.WaitUntilExists(3).GetAttribute("class").Contains("none"))
     {
         PassagePropertiesLink.Wait(3).Click();
     }
 }