Skip to content
Snippets Groups Projects
Commit 5afd9dc3 authored by Arie Peterson's avatar Arie Peterson
Browse files

Work around button being covered by span

parent b255de78
No related branches found
No related tags found
1 merge request!573Update Helm release nextcloud to v4.6.4
Pipeline #45104 failed with stages
in 4 minutes and 41 seconds
...@@ -57,8 +57,9 @@ describe('Test nextcloud', () => { ...@@ -57,8 +57,9 @@ describe('Test nextcloud', () => {
cy.visit('apps/files') cy.visit('apps/files')
cy.contains('button', 'New').click() cy.contains('button', 'New').click()
const file_rand = 'test-' + Math.random().toString(16).substr(2, 12) const file_rand = 'test-' + Math.random().toString(16).substr(2, 12)
cy.contains('button', 'New document').click().type(file_rand) cy.contains('button', 'New document').click()
cy.contains('button', 'Create').click() cy.get('input[placeholder="Filename"]').type(file_rand)
cy.contains('span', 'Create').click()
// Test Onlyoffice // Test Onlyoffice
cy.frameLoaded('#onlyofficeFrame') cy.frameLoaded('#onlyofficeFrame')
......
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