示例#1
0
        /* UPLOAD ACTIONS */

        public IActionSyntaxProvider Upload(string selector, string fileName)
        {
            // Before
            _logger.LogMessage("Upload file :" + fileName + " into element with selector: " + selector);

            // Execute
            if (!IsInDryRunMode)
            {
                _actionSyntaxProvider.Upload(selector, fileName);
            }

            // After
            return(this);
        }