Exemple #1
0
        public T ExecuteJs <T>(string jsExpression, bool async = false)
        {
            var command     = new ExecuteJsCommand <T>(jsExpression, async);
            var returnValue = _performer.PerformAndReturn(command);

            return(returnValue);
        }
Exemple #2
0
 public void SetUp()
 {
     _defaultCommand = new ExecuteJsCommand <long>(DefaultJsExpression, async: false);
 }