public void EAP_TC2_EditOwnArticleWithInvalidTitleMinimumLength()
        {
            var editArticlePage = new EditArticlePage(driver);
            var articleContent  = new EditArticleContent("Edit", "This article has been Edited. The original content of the article was starting with: Traditional quality assurance has become a bottleneck in the development process and the advancement of test automation. Innovative development teams ...");

            editArticlePage.NavigateTo();
            editArticlePage.OpenUserArticle.Click();
            editArticlePage.FillEditArticleForm(articleContent);

            editArticlePage.AssertEditArticleWithInvalidTitleMinimunLenghtMessage("The field Title must be a string with a minimum length of 5.");
        }