Ejemplo n.º 1
0
        public PageBase(List <object> utils)
        {
            foreach (object util in utils)
            {
                if (util is WebDriverPlugin)
                {
                    webDriver = (WebDriverPlugin)util;
                }

                if (util is AuScGen.CommonUtilityPlugin.MouseKeyBoardSimulator)
                {
                    keyboardSimulator = (AuScGen.CommonUtilityPlugin.MouseKeyBoardSimulator)util;
                }

                if (util is AuScGen.CommonUtilityPlugin.AutoITExtension)
                {
                    autoIT = (AuScGen.CommonUtilityPlugin.AutoITExtension)util;
                }
            }
        }
Ejemplo n.º 2
0
 public Wait(WebDriverPlugin webDriver, string completeGuiMapPath)
 {
     thisWebDriver  = webDriver;
     thisGuiMapPath = completeGuiMapPath;
 }
Ejemplo n.º 3
0
 public ScreenShot(WebDriverPlugin seleniumlugin, string folder)
 {
     webDriverPlugin = seleniumlugin;
     folderPath = folder;
 }
Ejemplo n.º 4
0
 public ScreenShot(WebDriverPlugin seleniumlugin, string folder)
 {
     webDriverPlugin = seleniumlugin;
     folderPath      = folder;
 }
Ejemplo n.º 5
0
 public PageBase(WebDriverPlugin webDriverPlugin, string guiMapName)
     : this(webDriverPlugin)
 {
     completeGuiMapPath = string.Concat(GuiMapPath, guiMapName);
 }
Ejemplo n.º 6
0
 public PageBase(WebDriverPlugin webDriverPlugin)
 {
     webDriver = webDriverPlugin;
 }