예제 #1
0
        public static void CreatePost()
        {
            PreviousTitle = CreatePostTitle();
            PreviousBody  = CreatePostBody();

            NewPostPage.GoTo();
            NewPostPage.CreatePostWithTitle(PreviousTitle)
            .WithBody(PreviousBody)
            .Publish();
        }
예제 #2
0
        public static void CreatePost()
        {
            NewPostPage.GoTo();

            PreviousTitle = CreateTitle();
            PreviousBody  = CreateBody();

            NewPostPage.CreatePost(PreviousTitle)
            .WithBody(PreviousBody)
            .Publish();

            //NewPostPage.CreatePost("Searching posts, title")
            //    .WithBody("Searching posts, body")
            //    .Publish();
        }