Skip to content
Snippets Groups Projects
Commit 95aeed38 authored by Marius Dumitru Florea's avatar Marius Dumitru Florea
Browse files

XWIKI-21034: Write functional tests and Page Object for Quick Actions

* Fix since version and remove whitespace.
parent a7c2f70e
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,8 @@ ...@@ -44,7 +44,8 @@
* All functional tests for Quick Actions. * All functional tests for Quick Actions.
* *
* @version $Id$ * @version $Id$
* @since 15.5 * @since 15.5.1
* @since 15.6RC1
*/ */
@UITest( @UITest(
...@@ -67,7 +68,7 @@ ...@@ -67,7 +68,7 @@
) )
public class QuickActionsIT public class QuickActionsIT
{ {
/** /**
* Test string that will be inserted to check formatting. * Test string that will be inserted to check formatting.
*/ */
...@@ -79,13 +80,13 @@ void setUp(TestUtils setup) ...@@ -79,13 +80,13 @@ void setUp(TestUtils setup)
// Run the tests as a normal user. We make the user advanced only to enable the Edit drop down menu. // Run the tests as a normal user. We make the user advanced only to enable the Edit drop down menu.
createAndLoginStandardUser(setup); createAndLoginStandardUser(setup);
} }
@BeforeEach @BeforeEach
void cleanUp(TestUtils setup, TestReference testReference) void cleanUp(TestUtils setup, TestReference testReference)
{ {
setup.deletePage(testReference); setup.deletePage(testReference);
} }
@AfterEach @AfterEach
void exitEditMode(TestUtils setup, TestReference testReference) void exitEditMode(TestUtils setup, TestReference testReference)
{ {
...@@ -100,20 +101,19 @@ void exitEditMode(TestUtils setup, TestReference testReference) ...@@ -100,20 +101,19 @@ void exitEditMode(TestUtils setup, TestReference testReference)
} }
} }
} }
private static void createAndLoginStandardUser(TestUtils setup) private static void createAndLoginStandardUser(TestUtils setup)
{ {
setup.createUserAndLogin("alice", "pa$$word", "editor", "Wysiwyg", "usertype", "Advanced"); setup.createUserAndLogin("alice", "pa$$word", "editor", "Wysiwyg", "usertype", "Advanced");
} }
@Test @Test
@Order(1) @Order(1)
void heading1AndParagraph(TestUtils setup, TestReference testReference) throws Exception void heading1AndParagraph(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Switch to another style // Switch to another style
...@@ -123,12 +123,12 @@ void heading1AndParagraph(TestUtils setup, TestReference testReference) throws E ...@@ -123,12 +123,12 @@ void heading1AndParagraph(TestUtils setup, TestReference testReference) throws E
qa.waitForItemSelected("Heading 1"); qa.waitForItemSelected("Heading 1");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Write some text // Write some text
textArea.sendKeys(TEST_TEXT); textArea.sendKeys(TEST_TEXT);
Assertions.assertTrue(textArea.getContent().contains("<h1>" + TEST_TEXT + "<br></h1>")); Assertions.assertTrue(textArea.getContent().contains("<h1>" + TEST_TEXT + "<br></h1>"));
// Switch back to paragraph // Switch back to paragraph
textArea.sendKeys("/"); textArea.sendKeys("/");
qa = new AutocompleteDropdown(); qa = new AutocompleteDropdown();
...@@ -136,17 +136,17 @@ void heading1AndParagraph(TestUtils setup, TestReference testReference) throws E ...@@ -136,17 +136,17 @@ void heading1AndParagraph(TestUtils setup, TestReference testReference) throws E
qa.waitForItemSelected("Paragraph"); qa.waitForItemSelected("Paragraph");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
Assertions.assertTrue(textArea.getContent().contains("<p>" + TEST_TEXT + "<br></p>")); Assertions.assertTrue(textArea.getContent().contains("<p>" + TEST_TEXT + "<br></p>"));
} }
@Test @Test
@Order(2) @Order(2)
void heading2(TestUtils setup, TestReference testReference) throws Exception void heading2(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -158,20 +158,20 @@ void heading2(TestUtils setup, TestReference testReference) throws Exception ...@@ -158,20 +158,20 @@ void heading2(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Heading 2"); qa.waitForItemSelected("Heading 2");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Write some text // Write some text
textArea.sendKeys(TEST_TEXT); textArea.sendKeys(TEST_TEXT);
Assertions.assertTrue(textArea.getContent().contains("<h2>" + TEST_TEXT + "<br></h2>")); Assertions.assertTrue(textArea.getContent().contains("<h2>" + TEST_TEXT + "<br></h2>"));
} }
@Test @Test
@Order(3) @Order(3)
void heading3(TestUtils setup, TestReference testReference) throws Exception void heading3(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -183,20 +183,20 @@ void heading3(TestUtils setup, TestReference testReference) throws Exception ...@@ -183,20 +183,20 @@ void heading3(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Heading 3"); qa.waitForItemSelected("Heading 3");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Write some text // Write some text
textArea.sendKeys(TEST_TEXT); textArea.sendKeys(TEST_TEXT);
Assertions.assertTrue(textArea.getContent().contains("<h3>" + TEST_TEXT + "<br></h3>")); Assertions.assertTrue(textArea.getContent().contains("<h3>" + TEST_TEXT + "<br></h3>"));
} }
@Test @Test
@Order(4) @Order(4)
void bulletedList(TestUtils setup, TestReference testReference) throws Exception void bulletedList(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -206,10 +206,10 @@ void bulletedList(TestUtils setup, TestReference testReference) throws Exception ...@@ -206,10 +206,10 @@ void bulletedList(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Bulleted List"); qa.waitForItemSelected("Bulleted List");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Write some text // Write some text
textArea.sendKeys(TEST_TEXT); textArea.sendKeys(TEST_TEXT);
Assertions.assertTrue(textArea.getContent().contains("<ul><li>" + TEST_TEXT + "<br></li></ul>")); Assertions.assertTrue(textArea.getContent().contains("<ul><li>" + TEST_TEXT + "<br></li></ul>"));
} }
...@@ -219,7 +219,7 @@ void numberedList(TestUtils setup, TestReference testReference) throws Exception ...@@ -219,7 +219,7 @@ void numberedList(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -229,10 +229,10 @@ void numberedList(TestUtils setup, TestReference testReference) throws Exception ...@@ -229,10 +229,10 @@ void numberedList(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Numbered List"); qa.waitForItemSelected("Numbered List");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Write some text // Write some text
textArea.sendKeys(TEST_TEXT); textArea.sendKeys(TEST_TEXT);
Assertions.assertTrue(textArea.getContent().contains("<ol><li>" + TEST_TEXT + "<br></li></ol>")); Assertions.assertTrue(textArea.getContent().contains("<ol><li>" + TEST_TEXT + "<br></li></ol>"));
} }
...@@ -242,7 +242,7 @@ void table(TestUtils setup, TestReference testReference) throws Exception ...@@ -242,7 +242,7 @@ void table(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -252,10 +252,10 @@ void table(TestUtils setup, TestReference testReference) throws Exception ...@@ -252,10 +252,10 @@ void table(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Table"); qa.waitForItemSelected("Table");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Click OK on the table insertion dialog // Click OK on the table insertion dialog
new CKEditorDialog().submitDialog(); new CKEditorDialog().submitDialog();
// Write some text // Write some text
textArea.sendKeys(TEST_TEXT); textArea.sendKeys(TEST_TEXT);
...@@ -263,15 +263,14 @@ void table(TestUtils setup, TestReference testReference) throws Exception ...@@ -263,15 +263,14 @@ void table(TestUtils setup, TestReference testReference) throws Exception
+ "<tr><td><br></td><td><br></td></tr>" + "<tr><td><br></td><td><br></td></tr>"
+ "<tr><td><br></td><td><br></td></tr></tbody></table>"); + "<tr><td><br></td><td><br></td></tr></tbody></table>");
} }
@Test @Test
@Order(7) @Order(7)
void blockQuote(TestUtils setup, TestReference testReference) throws Exception void blockQuote(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -281,20 +280,20 @@ void blockQuote(TestUtils setup, TestReference testReference) throws Exception ...@@ -281,20 +280,20 @@ void blockQuote(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Quote"); qa.waitForItemSelected("Quote");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Write some text // Write some text
textArea.sendKeys(TEST_TEXT); textArea.sendKeys(TEST_TEXT);
Assertions.assertTrue(textArea.getContent().contains("<blockquote><p>" + TEST_TEXT + "<br></p></blockquote>")); Assertions.assertTrue(textArea.getContent().contains("<blockquote><p>" + TEST_TEXT + "<br></p></blockquote>"));
} }
@Test @Test
@Order(8) @Order(8)
void infoBox(TestUtils setup, TestReference testReference) throws Exception void infoBox(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -304,10 +303,10 @@ void infoBox(TestUtils setup, TestReference testReference) throws Exception ...@@ -304,10 +303,10 @@ void infoBox(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Info Box"); qa.waitForItemSelected("Info Box");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
textArea = editor.getRichTextArea(); textArea = editor.getRichTextArea();
textArea.waitUntilContentEditable(); textArea.waitUntilContentEditable();
WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki(); WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki();
Assertions.assertTrue(wikiEditPage.getContent().contains("{{info}}\n" Assertions.assertTrue(wikiEditPage.getContent().contains("{{info}}\n"
+ "Type your information message here.\n" + "Type your information message here.\n"
...@@ -320,7 +319,7 @@ void successBox(TestUtils setup, TestReference testReference) throws Exception ...@@ -320,7 +319,7 @@ void successBox(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -330,10 +329,10 @@ void successBox(TestUtils setup, TestReference testReference) throws Exception ...@@ -330,10 +329,10 @@ void successBox(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Success Box"); qa.waitForItemSelected("Success Box");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
textArea = editor.getRichTextArea(); textArea = editor.getRichTextArea();
textArea.waitUntilContentEditable(); textArea.waitUntilContentEditable();
WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki(); WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki();
Assertions.assertTrue(wikiEditPage.getContent().contains("{{success}}\n" Assertions.assertTrue(wikiEditPage.getContent().contains("{{success}}\n"
+ "Type your success message here.\n" + "Type your success message here.\n"
...@@ -345,7 +344,7 @@ void warningBox(TestUtils setup, TestReference testReference) throws Exception ...@@ -345,7 +344,7 @@ void warningBox(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -355,10 +354,10 @@ void warningBox(TestUtils setup, TestReference testReference) throws Exception ...@@ -355,10 +354,10 @@ void warningBox(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Warning Box"); qa.waitForItemSelected("Warning Box");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
textArea = editor.getRichTextArea(); textArea = editor.getRichTextArea();
textArea.waitUntilContentEditable(); textArea.waitUntilContentEditable();
WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki(); WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki();
Assertions.assertTrue(wikiEditPage.getContent().contains("{{warning}}\n" Assertions.assertTrue(wikiEditPage.getContent().contains("{{warning}}\n"
+ "Type your warning message here.\n" + "Type your warning message here.\n"
...@@ -371,7 +370,7 @@ void errorBox(TestUtils setup, TestReference testReference) throws Exception ...@@ -371,7 +370,7 @@ void errorBox(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -381,23 +380,23 @@ void errorBox(TestUtils setup, TestReference testReference) throws Exception ...@@ -381,23 +380,23 @@ void errorBox(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Error Box"); qa.waitForItemSelected("Error Box");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
textArea = editor.getRichTextArea(); textArea = editor.getRichTextArea();
textArea.waitUntilContentEditable(); textArea.waitUntilContentEditable();
WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki(); WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki();
Assertions.assertTrue(wikiEditPage.getContent().contains("{{error}}\n" Assertions.assertTrue(wikiEditPage.getContent().contains("{{error}}\n"
+ "Type your error message here.\n" + "Type your error message here.\n"
+ "{{/error}}")); + "{{/error}}"));
} }
@Test @Test
@Order(12) @Order(12)
void divider(TestUtils setup, TestReference testReference) throws Exception void divider(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -407,17 +406,17 @@ void divider(TestUtils setup, TestReference testReference) throws Exception ...@@ -407,17 +406,17 @@ void divider(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Divider"); qa.waitForItemSelected("Divider");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
Assertions.assertTrue(textArea.getContent().contains("<hr>")); Assertions.assertTrue(textArea.getContent().contains("<hr>"));
} }
@Test @Test
@Order(13) @Order(13)
void link(TestUtils setup, TestReference testReference) throws Exception void link(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -427,20 +426,20 @@ void link(TestUtils setup, TestReference testReference) throws Exception ...@@ -427,20 +426,20 @@ void link(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Link"); qa.waitForItemSelected("Link");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
textArea.sendKeys("ali"); textArea.sendKeys("ali");
AutocompleteDropdown link = new AutocompleteDropdown(); AutocompleteDropdown link = new AutocompleteDropdown();
link.waitForItemSelected("alice"); link.waitForItemSelected("alice");
Assertions.assertTrue(textArea.getText().contains("[")); Assertions.assertTrue(textArea.getText().contains("["));
} }
@Test @Test
@Order(14) @Order(14)
void image(TestUtils setup, TestReference testReference) throws Exception void image(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -450,7 +449,7 @@ void image(TestUtils setup, TestReference testReference) throws Exception ...@@ -450,7 +449,7 @@ void image(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Image"); qa.waitForItemSelected("Image");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
new ImageDialogSelectModal().waitUntilReady().clickCancel(); new ImageDialogSelectModal().waitUntilReady().clickCancel();
} }
...@@ -460,7 +459,7 @@ void mention(TestUtils setup, TestReference testReference) throws Exception ...@@ -460,7 +459,7 @@ void mention(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -470,19 +469,19 @@ void mention(TestUtils setup, TestReference testReference) throws Exception ...@@ -470,19 +469,19 @@ void mention(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Mention"); qa.waitForItemSelected("Mention");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
AutocompleteDropdown mention = new AutocompleteDropdown(); AutocompleteDropdown mention = new AutocompleteDropdown();
mention.waitForItemSelected("alice"); mention.waitForItemSelected("alice");
Assertions.assertTrue(textArea.getText().contains("@")); Assertions.assertTrue(textArea.getText().contains("@"));
} }
@Test @Test
@Order(16) @Order(16)
void emoji(TestUtils setup, TestReference testReference) throws Exception void emoji(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -491,19 +490,19 @@ void emoji(TestUtils setup, TestReference testReference) throws Exception ...@@ -491,19 +490,19 @@ void emoji(TestUtils setup, TestReference testReference) throws Exception
textArea.sendKeys("emo"); textArea.sendKeys("emo");
qa.waitForItemSelected("Emoji"); qa.waitForItemSelected("Emoji");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
AutocompleteDropdown emoji = new AutocompleteDropdown(); AutocompleteDropdown emoji = new AutocompleteDropdown();
emoji.waitForItemSelected("🛩"); emoji.waitForItemSelected("🛩");
Assertions.assertTrue(textArea.getText().contains(":sm")); Assertions.assertTrue(textArea.getText().contains(":sm"));
} }
@Test @Test
@Order(17) @Order(17)
void include(TestUtils setup, TestReference testReference) throws Exception void include(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -513,24 +512,24 @@ void include(TestUtils setup, TestReference testReference) throws Exception ...@@ -513,24 +512,24 @@ void include(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Include Page"); qa.waitForItemSelected("Include Page");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Empty form // Empty form
new MacroDialogEditModal().waitUntilReady().clickSubmit(); new MacroDialogEditModal().waitUntilReady().clickSubmit();
textArea = editor.getRichTextArea(); textArea = editor.getRichTextArea();
textArea.waitUntilContentEditable(); textArea.waitUntilContentEditable();
WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki(); WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki();
Assertions.assertTrue(wikiEditPage.getContent().contains("{{include/}}")); Assertions.assertTrue(wikiEditPage.getContent().contains("{{include/}}"));
} }
@Test @Test
@Order(18) @Order(18)
void code(TestUtils setup, TestReference testReference) throws Exception void code(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -540,24 +539,24 @@ void code(TestUtils setup, TestReference testReference) throws Exception ...@@ -540,24 +539,24 @@ void code(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Code Snippet"); qa.waitForItemSelected("Code Snippet");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Empty form // Empty form
new MacroDialogEditModal().waitUntilReady().clickSubmit(); new MacroDialogEditModal().waitUntilReady().clickSubmit();
textArea = editor.getRichTextArea(); textArea = editor.getRichTextArea();
textArea.waitUntilContentEditable(); textArea.waitUntilContentEditable();
WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki(); WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki();
Assertions.assertTrue(wikiEditPage.getContent().contains("{{code language=\"none\"}}{{/code}}")); Assertions.assertTrue(wikiEditPage.getContent().contains("{{code language=\"none\"}}{{/code}}"));
} }
@Test @Test
@Order(19) @Order(19)
void toc(TestUtils setup, TestReference testReference) throws Exception void toc(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -567,21 +566,21 @@ void toc(TestUtils setup, TestReference testReference) throws Exception ...@@ -567,21 +566,21 @@ void toc(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Table of Contents"); qa.waitForItemSelected("Table of Contents");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
textArea = editor.getRichTextArea(); textArea = editor.getRichTextArea();
textArea.waitUntilContentEditable(); textArea.waitUntilContentEditable();
WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki(); WikiEditPage wikiEditPage = editPage.clickSaveAndView().editWiki();
Assertions.assertTrue(wikiEditPage.getContent().contains("{{toc/}}")); Assertions.assertTrue(wikiEditPage.getContent().contains("{{toc/}}"));
} }
@Test @Test
@Order(20) @Order(20)
void find(TestUtils setup, TestReference testReference) throws Exception void find(TestUtils setup, TestReference testReference) throws Exception
{ {
WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG(); WYSIWYGEditPage editPage = setup.gotoPage(testReference).editWYSIWYG();
CKEditor editor = new CKEditor("content").waitToLoad(); CKEditor editor = new CKEditor("content").waitToLoad();
RichTextAreaElement textArea = editor.getRichTextArea(); RichTextAreaElement textArea = editor.getRichTextArea();
// Run the action // Run the action
...@@ -591,7 +590,7 @@ void find(TestUtils setup, TestReference testReference) throws Exception ...@@ -591,7 +590,7 @@ void find(TestUtils setup, TestReference testReference) throws Exception
qa.waitForItemSelected("Find and Replace"); qa.waitForItemSelected("Find and Replace");
textArea.sendKeys(Keys.ENTER); textArea.sendKeys(Keys.ENTER);
qa.waitForItemSubmitted(); qa.waitForItemSubmitted();
// Click close on the Find and Replace dialog // Click close on the Find and Replace dialog
new CKEditorDialog().cancelDialog(); new CKEditorDialog().cancelDialog();
} }
......
...@@ -28,7 +28,8 @@ ...@@ -28,7 +28,8 @@
* Models an auto-complete drop-down. * Models an auto-complete drop-down.
* *
* @version $Id$ * @version $Id$
* @since 15.5 * @since 15.5.1
* @since 15.6RC1
*/ */
@Unstable @Unstable
public class AutocompleteDropdown extends BaseElement public class AutocompleteDropdown extends BaseElement
...@@ -42,7 +43,7 @@ public void waitForItemSelected(String label) ...@@ -42,7 +43,7 @@ public void waitForItemSelected(String label)
{ {
getDriver().findElement(By.xpath("//*[contains(@class, 'cke_autocomplete_selected')]//*[. = '" + label + "']")); getDriver().findElement(By.xpath("//*[contains(@class, 'cke_autocomplete_selected')]//*[. = '" + label + "']"));
} }
/** /**
* Waits for the auto-complete drop-down to disappear. * Waits for the auto-complete drop-down to disappear.
*/ */
......
...@@ -28,13 +28,12 @@ ...@@ -28,13 +28,12 @@
* Models a CKEditor Dialog. * Models a CKEditor Dialog.
* *
* @version $Id$ * @version $Id$
* @since 1.15 * @since 15.5.1
* @since 15.6RC1
*/ */
@Unstable @Unstable
public class CKEditorDialog extends BaseElement public class CKEditorDialog extends BaseElement
{ {
/** /**
* Creates a CKEditor Dialog instance. * Creates a CKEditor Dialog instance.
*/ */
...@@ -42,7 +41,7 @@ public CKEditorDialog() ...@@ -42,7 +41,7 @@ public CKEditorDialog()
{ {
getDriver().waitUntilElementIsVisible(By.className("cke_dialog_contents")); getDriver().waitUntilElementIsVisible(By.className("cke_dialog_contents"));
} }
/** /**
* Clicks OK on a CKEditor dialog. * Clicks OK on a CKEditor dialog.
*/ */
...@@ -51,7 +50,7 @@ public void submitDialog() ...@@ -51,7 +50,7 @@ public void submitDialog()
getDriver().findElement(By.className("cke_dialog_ui_button_ok")).click(); getDriver().findElement(By.className("cke_dialog_ui_button_ok")).click();
getDriver().waitUntilElementDisappears(By.className("cke_dialog_contents")); getDriver().waitUntilElementDisappears(By.className("cke_dialog_contents"));
} }
/** /**
* Clicks close on a CKEditor dialog. * Clicks close on a CKEditor dialog.
*/ */
......
...@@ -156,9 +156,12 @@ private WebElement getActiveElement() ...@@ -156,9 +156,12 @@ private WebElement getActiveElement()
getDriver().switchTo().frame(this.iframe); getDriver().switchTo().frame(this.iframe);
return getDriver().switchTo().activeElement(); return getDriver().switchTo().activeElement();
} }
/** /**
* Waits until the content is editable. * Waits until the content is editable.
*
* @since 15.5.1
* @since 15.6RC1
*/ */
public void waitUntilContentEditable() public void waitUntilContentEditable()
{ {
......
...@@ -57,9 +57,12 @@ public ImageDialogEditModal clickSelect() ...@@ -57,9 +57,12 @@ public ImageDialogEditModal clickSelect()
element.click(); element.click();
return new ImageDialogEditModal().waitUntilReady(); return new ImageDialogEditModal().waitUntilReady();
} }
/** /**
* Click on the cancel button. * Click on the cancel button.
*
* @since 15.5.1
* @since 15.6RC1
*/ */
public void clickCancel() public void clickCancel()
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment