public void ValidateBodyTextfieled() { var bodyExValue = _params["bodyExValue"].ToString(); HomePage homePage = new HomePage(_browser); FaceBookconnectPage faceBookconnectPage = homePage.ClickOnConnectBtn(); HomePage homePageConnected = faceBookconnectPage.Login(_config.ConfigObject.Users.AdminUser); homePageConnected.ValidateUserProfilePic(); EditorPage editorPage = homePageConnected.ClickOnAddArticle(); ArticleBase articleBase = editorPage.ClickOnArticle(); articleBase.WriteDec(bodyExValue); var bodyAcValue = articleBase.GetBodyValue(); Assert.AreEqual(bodyExValue, bodyAcValue); }