Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 22nd, 2012  |  syntax: None  |  size: 0.29 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to refresh UIMap object in CodedUI
  2. private MyTestUIMap uiMap;
  3. public MyTestUImap UIMap
  4. {
  5.     get
  6.     {
  7.         if (this.uiMap == null)
  8.         {
  9.             this.uiMap = new MyTestUIMap();
  10.         }
  11.         return this.uiMap;
  12.     }
  13. }
  14.        
  15. public void RefreshUIMap()
  16. {
  17.     this.uiMap = null;
  18. }