コード例 #1
0
ファイル: GivenContextChain.cs プロジェクト: orf53975/OctoGWT
        public WhenContextChain When(params IWhenInstruction[] instructions)
        {
            var context = new WhenContextChain(this, instructions);

            return(context);
        }
コード例 #2
0
ファイル: GivenContextChain.cs プロジェクト: orf53975/OctoGWT
        public WhenContextChain When(params Action <GivenWhenWebDriverFacade>[] actions)
        {
            var context = new WhenContextChain(this, actions);

            return(context);
        }