public Plugin() { m_variableDictionary = new VariableDictionary(); m_webElementDictionary = new WebElementsDictionary(); m_webDriver = new WebDriver(); m_sequenceDictionary = new SequenceDictionary(); }
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>(); }
public void SetWebElementsDictionary(WebElementsDictionary dictionary) { m_webElementsDictionary = dictionary; }