Skip to content
Snippets Groups Projects
Commit 9a918a02 authored by srosse's avatar srosse
Browse files

OO-1068: update selenium tests

parent b19e2478
No related branches found
No related tags found
No related merge requests found
......@@ -532,7 +532,7 @@ public class CourseTest {
Assert.assertEquals(blogTitle, podcastH2.getText().trim());
FeedPage feed = FeedPage.getFeedPage(browser);
feed.newExternalBlog("http://blogs.frentix.com/blogs/frentix/rss.xml");
feed.newExternalBlog("http://www.openolat.com/feed/");
//check only that the subscription link is visible
WebElement subscriptionLink = browser.findElement(By.cssSelector("div.o_subscription>a"));
......
......@@ -396,6 +396,7 @@ public class PortfolioTest {
String textTitle = "Text-1-" + UUID.randomUUID();
//create a text artefact
portfolio
.addArtefact()
.createTextArtefact()
.fillTextArtefactContent("Content of the text artefact")
.next()
......@@ -528,6 +529,7 @@ public class PortfolioTest {
String textTitle = "Journal-1-" + UUID.randomUUID();
//create a live blog or learning journal
portfolio
.addArtefact()
.createLearningJournal()
.fillArtefactMetadatas(textTitle, "Description")
.next()
......@@ -690,6 +692,7 @@ public class PortfolioTest {
File file = new File(courseUrl.toURI());
//create the artefact
portfolio
.addArtefact()
.createFileArtefact()
.uploadFile(file)
.next()
......
......@@ -73,14 +73,14 @@ public class ForumPage {
OOGraphene.waitBusy();
//fill the form
By titleBy = By.cssSelector("div.o_content form input[type='text']");
By titleBy = By.cssSelector("div.modal-content form input[type='text']");
WebElement titleEl = browser.findElement(titleBy);
titleEl.sendKeys(title);
OOGraphene.tinymce(content, browser);
//save
By saveBy = By.cssSelector("div.o_content form button.btn-primary");
By saveBy = By.cssSelector("div.modal-content form button.btn-primary");
WebElement saveButton = browser.findElement(saveBy);
saveButton.click();
OOGraphene.waitBusy();
......
......@@ -74,8 +74,6 @@ public class PortfolioPage {
* @return
*/
public ArtefactWizardPage createTextArtefact() {
addArtefact();
By addTextArtefactBy = By.className("o_sel_add_text_artfeact");
OOGraphene.waitElement(addTextArtefactBy);
WebElement addTextArtefactLink = browser.findElement(addTextArtefactBy);
......@@ -90,8 +88,6 @@ public class PortfolioPage {
* @return
*/
public ArtefactWizardPage createLearningJournal() {
addArtefact();
By addJournalArtefactBy = By.className("o_sel_add_liveblog_artfeact");
OOGraphene.waitElement(addJournalArtefactBy);
WebElement addJournalArtefactLink = browser.findElement(addJournalArtefactBy);
......@@ -102,8 +98,6 @@ public class PortfolioPage {
}
public ArtefactWizardPage createFileArtefact() {
addArtefact();
By addJournalArtefactBy = By.className("o_sel_add_upload_artfeact");
OOGraphene.waitElement(addJournalArtefactBy);
WebElement addJournalArtefactLink = browser.findElement(addJournalArtefactBy);
......
......@@ -99,8 +99,10 @@ public class FeedPage {
browser.findElement(configureExternalButton).click();
OOGraphene.waitBusy();
//fill the URL input field
By urlField = By.xpath("(//div[contains(@class,'modal-body ')]//form//input[@type='text'])[2]");
browser.findElement(urlField).sendKeys(url);
By urlField = By.xpath("(//div[contains(@class,'modal-body')]//form//input[@type='text'])[2]");
WebElement urlEl = browser.findElement(urlField);
urlEl.sendKeys(url);
//write something in description
OOGraphene.tinymce("...", browser);
......
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