public string GetOuterHtml(SeleniumCommandArguments search) { return(GetAttributeValue("outerHTML", search)); }
public void CallFunction(string functionName, object[] arguments, string type, SeleniumCommandArguments search, TimeSpan timeout) { NewPopupWindowHandler popupHandler = new NewPopupWindowHandler(webDriver); PreCheckCurrentWindowHandle(); if (string.IsNullOrEmpty(search.IFrameSearch?.Value) == false) { webDriver.SwitchTo().Frame(FindElement(search.IFrameSearch.Value, search.IFrameBy.Value, timeout)); } IWebElement element = FindElement(search.Search.Value, search.By.Value, timeout); element?.CallFunction(functionName, arguments, type); if (string.IsNullOrEmpty(search.IFrameSearch?.Value) == false) { webDriver.SwitchTo().DefaultContent(); } popupHandler.Finish(); }
public void SetAttributeValue(string attributeName, string attributeValue, AttributeOperationType setAttributeType, SeleniumCommandArguments search, TimeSpan timeout) { var element = GetElementInFrame(search, timeout); if (element != null) { if (IsAttributeOprtationType(element, attributeName, setAttributeType)) { element.SetAttribute(attributeName, attributeValue); } else { element.SetProperty(attributeName, attributeValue); } } if (string.IsNullOrEmpty(search.IFrameSearch?.Value) == false) { webDriver.SwitchTo().DefaultContent(); } }