ce063cdce4
Change-Id: I80717c8aca5b7e75f282c38aaa1608ddd14facda
436 lines
10 KiB
JavaScript
436 lines
10 KiB
JavaScript
/* global describe it cy beforeEach require expect afterEach Cypress*/
|
|
|
|
var helper = require('../common/helper');
|
|
|
|
describe('Apply paragraph properties.', function() {
|
|
beforeEach(function() {
|
|
helper.beforeAllMobile('simple.odt');
|
|
|
|
// Click on edit button
|
|
cy.get('#mobile-edit-button').click();
|
|
|
|
// Do a selection
|
|
helper.selectAllMobile();
|
|
|
|
// Open mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.should('not.have.class', 'disabled')
|
|
.click();
|
|
|
|
// Open paragraph properties
|
|
cy.get('#Paragraph')
|
|
.click();
|
|
});
|
|
|
|
afterEach(function() {
|
|
helper.afterAll();
|
|
});
|
|
|
|
it('Apply left alignment.', function() {
|
|
// Change alignment
|
|
cy.get('#CenterPara')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.should('have.attr', 'align', 'center');
|
|
|
|
// Select text
|
|
helper.selectAllMobile();
|
|
|
|
// Open mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
// Open paragraph properties
|
|
cy.get('#Paragraph')
|
|
.click();
|
|
|
|
// Change alignment
|
|
cy.get('#LeftPara')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.should('have.attr', 'align', 'left');
|
|
});
|
|
|
|
it('Apply center alignment.', function() {
|
|
// Change alignment
|
|
cy.get('#CenterPara')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.should('have.attr', 'align', 'center');
|
|
});
|
|
|
|
it('Apply right alignment.', function() {
|
|
// Change alignment
|
|
cy.get('#RightPara')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.should('have.attr', 'align', 'right');
|
|
});
|
|
|
|
it('Apply justify alignment.', function() {
|
|
// Change alignment
|
|
cy.get('#JustifyPara')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.should('have.attr', 'align', 'justify');
|
|
});
|
|
|
|
it('Change writing direction.', function() {
|
|
// Change writing mode
|
|
cy.get('#ParaRightToLeft')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.should('have.attr', 'dir', 'rtl');
|
|
|
|
// Select text
|
|
helper.selectAllMobile();
|
|
|
|
// Open mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
// Open paragraph properties
|
|
cy.get('#Paragraph')
|
|
.click();
|
|
|
|
// Change writing mode
|
|
cy.get('#ParaLeftToRight')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.should('not.have.attr', 'dir');
|
|
});
|
|
|
|
it('Apply default bulleting.', function() {
|
|
// TODO: Why this item is missing with core/master
|
|
// In desktop LO, sidebar contains this item.
|
|
if (Cypress.env('LO_CORE_VERSION') === 'master')
|
|
return;
|
|
|
|
cy.get('#DefaultBullet')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container ul li p')
|
|
.should('exist');
|
|
});
|
|
|
|
it('Apply default numbering.', function() {
|
|
// TODO: Why this item is missing with core/master
|
|
// In desktop LO, sidebar contains this item.
|
|
if (Cypress.env('LO_CORE_VERSION') === 'master')
|
|
return;
|
|
|
|
cy.get('#DefaultNumbering')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container ol li p')
|
|
.should('exist');
|
|
});
|
|
|
|
it('Apply background color.', function() {
|
|
// TODO: Why this item is missing with core/master
|
|
// In desktop LO, sidebar contains this item.
|
|
if (Cypress.env('LO_CORE_VERSION') === 'master')
|
|
return;
|
|
|
|
// Change background color
|
|
cy.get('#BackgroundColor')
|
|
.click();
|
|
|
|
cy.get('#color-picker-2-basic-color-5')
|
|
.click();
|
|
|
|
cy.get('#color-picker-2-tint-3')
|
|
.click();
|
|
|
|
cy.get('#mobile-wizard-back')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['background']).to.be.equal('rgb(0, 255, 0)');
|
|
});
|
|
});
|
|
|
|
it('Increase / decrease para spacing.', function() {
|
|
// Increase para spacing
|
|
cy.get('#ParaspaceIncrease')
|
|
.click();
|
|
cy.get('#ParaspaceIncrease')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['margin-top']).to.be.equal('0.08in');
|
|
expect(item[0].style['margin-bottom']).to.be.equal('0.08in');
|
|
});
|
|
|
|
// Select text
|
|
helper.selectAllMobile();
|
|
|
|
// Open mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
// Open paragraph properties
|
|
cy.get('#Paragraph')
|
|
.click();
|
|
|
|
// Decrease para spacing
|
|
cy.get('#ParaspaceDecrease')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['margin-top']).to.be.equal('0.04in');
|
|
expect(item[0].style['margin-bottom']).to.be.equal('0.04in');
|
|
});
|
|
});
|
|
|
|
it('Change para spacing via combobox.', function() {
|
|
// Check para spacing current value
|
|
cy.get('#aboveparaspacing .spinfield')
|
|
.should('have.attr', 'value', '0.0');
|
|
cy.get('#belowparaspacing .spinfield')
|
|
.should('have.attr', 'value', '0.0');
|
|
|
|
// Change spacing
|
|
cy.get('#aboveparaspacing .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#aboveparaspacing .spinfield')
|
|
.should('have.attr', 'value', '0.02');
|
|
cy.get('#aboveparaspacing .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#aboveparaspacing .spinfield')
|
|
.should('have.attr', 'value', '0.04');
|
|
cy.get('#aboveparaspacing .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#aboveparaspacing .spinfield')
|
|
.should('have.attr', 'value', '0.06');
|
|
|
|
cy.get('#belowparaspacing .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#belowparaspacing .spinfield')
|
|
.should('have.attr', 'value', '0.02');
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['margin-top']).to.be.equal('0.06in');
|
|
expect(item[0].style['margin-bottom']).to.be.equal('0.02in');
|
|
});
|
|
});
|
|
|
|
it('Increase / decrease indent.', function() {
|
|
// Increase indent
|
|
cy.get('#IncrementIndent')
|
|
.click();
|
|
cy.get('#IncrementIndent')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['margin-left']).to.be.equal('0.98in');
|
|
});
|
|
|
|
// Select text
|
|
helper.selectAllMobile();
|
|
|
|
// Open mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
// Open paragraph properties
|
|
cy.get('#Paragraph')
|
|
.click();
|
|
|
|
// Decrease indent
|
|
cy.get('#DecrementIndent')
|
|
.click();
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['margin-left']).to.be.equal('0.49in');
|
|
});
|
|
});
|
|
|
|
it('Apply before text indent.', function() {
|
|
// Change indent
|
|
cy.get('#beforetextindent .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#beforetextindent .spinfield')
|
|
.should('have.attr', 'value', '0.02');
|
|
cy.get('#beforetextindent .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#beforetextindent .spinfield')
|
|
.should('have.attr', 'value', '0.04');
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['margin-left']).to.be.equal('0.04in');
|
|
});
|
|
});
|
|
|
|
it('Apply after text indent.', function() {
|
|
// Change indent
|
|
cy.get('#aftertextindent .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#aftertextindent .spinfield')
|
|
.should('have.attr', 'value', '0.02');
|
|
cy.get('#aftertextindent .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#aftertextindent .spinfield')
|
|
.should('have.attr', 'value', '0.04');
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['margin-right']).to.be.equal('0.04in');
|
|
});
|
|
});
|
|
|
|
it('Apply first line indent.', function() {
|
|
// Increase firstline indent
|
|
cy.get('#firstlineindent .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#firstlineindent .spinfield')
|
|
.should('have.attr', 'value', '0.02');
|
|
cy.get('#firstlineindent .sinfieldcontrols .plus')
|
|
.click();
|
|
cy.get('#firstlineindent .spinfield')
|
|
.should('have.attr', 'value', '0.04');
|
|
|
|
// Close mobile wizard
|
|
cy.get('#tb_actionbar_item_mobile_wizard')
|
|
.click();
|
|
|
|
helper.copyTextToClipboard();
|
|
|
|
cy.get('#copy-paste-container p')
|
|
.then(function(item) {
|
|
expect(item).to.have.lengthOf(1);
|
|
expect(item[0].style['text-indent']).to.be.equal('0.04in');
|
|
});
|
|
});
|
|
|
|
it('Linespacing item is hidden.', function() {
|
|
// Linespacing item triggers a drop down menu in core
|
|
// which is not implemented in online yet.
|
|
cy.get('#LineSpacing')
|
|
.should('not.exist');
|
|
});
|
|
});
|