public void EAP_TC1_EditOwnArticleWithValidData()
        {
            var editArticlePage = new EditArticlePage(driver);
            var articleContent  = new EditArticleContent("This article has been Edited", "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.AssertEditArticleWithValidData("This article has been Edited");
        }