Beispiel #1
0
        public PopupControl <ProcessEntity> DeleteProcessClick(OperationSymbol operationSymbol)
        {
            MenuClick(operationSymbol.KeyWeb());
            resultTable.Selenium.ConsumeAlert();

            var result = new PopupControl <ProcessEntity>(this.resultTable.Selenium, "New");

            result.Selenium.WaitElementPresent(result.PopupLocator);
            return(result);
        }
Beispiel #2
0
        public void DeleteClick(OperationSymbol operationSymbol, bool consumeConfirmation = true)
        {
            MenuClick(operationSymbol.KeyWeb());
            if (consumeConfirmation)
            {
                this.resultTable.Selenium.ConsumeAlert();
            }

            resultTable.WaitActiveSuccess();
        }