Example #1
0
        public WhenContextChain When(params IWhenInstruction[] instructions)
        {
            var context = new WhenContextChain(this, instructions);

            return(context);
        }
Example #2
0
        public WhenContextChain When(params Action <GivenWhenWebDriverFacade>[] actions)
        {
            var context = new WhenContextChain(this, actions);

            return(context);
        }