示例#1
0
        public GivenContextChain Given(params IGivenInstruction[] instructions)
        {
            var context = new GivenContextChain(this, instructions);

            return(context);
        }
示例#2
0
        public GivenContextChain Given(params Action <GivenWhenWebDriverFacade>[] actions)
        {
            var context = new GivenContextChain(this, actions);

            return(context);
        }