Esempio n. 1
0
        public Plugin()
        {
            m_variableDictionary   = new VariableDictionary();
            m_webElementDictionary = new WebElementsDictionary();
            m_webDriver            = new WebDriver();

            m_sequenceDictionary = new SequenceDictionary();
        }
Esempio n. 2
0
 public Sequence(string sSequenceName,
                 VariableDictionary varDict,
                 WebElementsDictionary webElementDict,
                 WebDriver webDriver)
 {
     m_sSequenceName              = sSequenceName;
     m_variableDictionary         = varDict;
     m_webDriverElementDictionary = webElementDict;
     m_webDriver   = webDriver;
     m_commandList = new List <Command>();
 }
Esempio n. 3
0
 public void SetWebElementsDictionary(WebElementsDictionary dictionary)
 {
     m_webElementsDictionary = dictionary;
 }