//implement methods
 public override void ClearForm()
 {
     WaitForEditorToDisplay();
     WaitForFrameToDisplay();
     WaitForTinyMceToDisplay();
     EditorContentArea.Clear();
     this.DriverCommands.WaitToSwitchWindow(_currentWindow, 3);
 }
 public override void ClearForm()
 {
     WaitForEditorToDisplay();
     WaitForLightboxFrameToDisplay();
     WaitForIFrameToDisplay();
     ReWaitForTinyMceToDisplay();
     EditorContentArea.Clear();
     this.DriverCommands.WaitToSwitchWindow(this.Parent.CurrentWindowHandle, 3);
 }
 public void ClearForm(WebElementWrapper lastElementExecuted)
 {
     LastElementExecuted = lastElementExecuted;
     WaitForEditorToDisplay();
     WaitForFrameToDisplay();
     ReWaitForTinyMceToDisplay();
     EditorContentArea.Clear();
     this.DriverCommands.WaitToSwitchWindow(_currentWindow, 3);
 }