Ejemplo n.º 1
0
        public FluentSessionRecorder CapturePage(out IPage page)
        {
            var command = new CapturePageCommand();

            page = _performer.PerformAndReturn(command);

            return(this);
        }
Ejemplo n.º 2
0
        public IPage CapturePage()
        {
            var command = new CapturePageCommand();

            return(_performer.PerformAndReturn(command));
        }