Extension rendering should be possible to use button for navigate to edit mode
Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
Test spec:
async
await sheetThumbs
.filter(elem => elem.getText().then(text => text === 'test:navigation-actions'))
.first()
.click();
await browser.sleep(1000);
await browser.wait(EC.visibilityOf($('#grid')), timeoutTime);
await browser.wait(EC.invisibilityOf(loadBlocker), timeoutTime);
await $$('.btn')
.filter(elem => elem.getText().then(text => text === 'Switch to Edit'))
.first()
.click();
await browser.wait(EC.urlContains('/state/edit'), timeoutTime);
Stack trace:
NoSuchElementError: Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
at selenium_webdriver_1.promise.all.then (node_modules/protractor/built/element.js:274:27)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)Error
at ElementArrayFinder.applyAction_ (node_modules/protractor/built/element.js:459:27)
at ElementArrayFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:91:29)
at ElementFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:831:22)
at Context.it (test/e2e/navigation-actions.comp.spec.js:49:8)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
Console log entries:
http://127.0.0.1:4848/api/capability/v1/list - Failed to load resource: the server responded with a status of 404 (Not Found)http://127.0.0.1:4848/api/about/v1/language?1510126820950&_=1515187725412 - Failed to load resource: the server responded with a status of 404 (Not Found)
Extension rendering should be possible to use button to navigate to the first sheet
Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
Test spec:
async
const targetSheetId = '392462be-a70b-4f14-a4cd-05a7aab19ed8';
await sheetThumbs
.filter(elem => elem.getText().then(text => text === 'test:navigation-actions'))
.first()
.click();
await browser.wait(EC.visibilityOf($('#grid')), timeoutTime);
await browser.wait(EC.invisibilityOf(loadBlocker), timeoutTime);
await $$('.btn')
.filter(elem => elem.getText().then(text => text === 'GotoSheet:First'))
.first()
.click();
await browser.wait(EC.urlContains(targetSheetId), timeoutTime);
Stack trace:
NoSuchElementError: Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
at selenium_webdriver_1.promise.all.then (node_modules/protractor/built/element.js:274:27)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)Error
at ElementArrayFinder.applyAction_ (node_modules/protractor/built/element.js:459:27)
at ElementArrayFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:91:29)
at ElementFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:831:22)
at Context.it (test/e2e/navigation-actions.comp.spec.js:68:8)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
Console log entries:
http://127.0.0.1:4848/api/capability/v1/list - Failed to load resource: the server responded with a status of 404 (Not Found)http://127.0.0.1:4848/api/about/v1/language?1510126820950&_=1515187730969 - Failed to load resource: the server responded with a status of 404 (Not Found)
Extension rendering should be possible to use button to navigate to the last sheet
Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
Test spec:
async
const targetSheetId = 'e9f4240b-2185-4b56-af7f-8e9a25253db0';
await sheetThumbs
.filter(elem => elem.getText().then(text => text === 'test:navigation-actions'))
.first()
.click();
await browser.wait(EC.visibilityOf($('#grid')), timeoutTime);
await browser.wait(EC.invisibilityOf(loadBlocker), timeoutTime);
await $$('.btn')
.filter(elem => elem.getText().then(text => text === 'GotoSheet:Last'))
.first()
.click();
await browser.wait(EC.urlContains(targetSheetId), timeoutTime);
Stack trace:
NoSuchElementError: Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
at selenium_webdriver_1.promise.all.then (node_modules/protractor/built/element.js:274:27)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)Error
at ElementArrayFinder.applyAction_ (node_modules/protractor/built/element.js:459:27)
at ElementArrayFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:91:29)
at ElementFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:831:22)
at Context.it (test/e2e/navigation-actions.comp.spec.js:88:8)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
Console log entries:
http://127.0.0.1:4848/api/capability/v1/list - Failed to load resource: the server responded with a status of 404 (Not Found)http://127.0.0.1:4848/api/about/v1/language?1510126820950&_=1515187734791 - Failed to load resource: the server responded with a status of 404 (Not Found)
Extension rendering should be possible to use button to navigate to the NEXT sheet
Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
Test spec:
async
const targetSheetId = '36b1f160-b676-4a3e-a753-c5f51a467f90';
await sheetThumbs
.filter(elem => elem.getText().then(text => text === 'first'))
.first()
.click();
await browser.wait(EC.visibilityOf($('#grid')), timeoutTime);
await browser.wait(EC.invisibilityOf(loadBlocker), timeoutTime);
await $$('.btn')
.filter(elem => elem.getText().then(text => text === 'GotoNextSheet'))
.first()
.click();
await browser.wait(EC.urlContains(targetSheetId), timeoutTime);
Stack trace:
NoSuchElementError: Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
at selenium_webdriver_1.promise.all.then (node_modules/protractor/built/element.js:274:27)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)Error
at ElementArrayFinder.applyAction_ (node_modules/protractor/built/element.js:459:27)
at ElementArrayFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:91:29)
at ElementFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:831:22)
at Context.it (test/e2e/navigation-actions.comp.spec.js:108:8)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
Console log entries:
http://127.0.0.1:4848/api/capability/v1/list - Failed to load resource: the server responded with a status of 404 (Not Found)http://127.0.0.1:4848/api/about/v1/language?1510126820950&_=1515187738479 - Failed to load resource: the server responded with a status of 404 (Not Found)
Extension rendering should be possible to use button to navigate to the PREV sheet
Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
Test spec:
async
const targetSheetId = '392462be-a70b-4f14-a4cd-05a7aab19ed8';
await sheetThumbs
.filter(elem => elem.getText().then(text => text === 'second'))
.first()
.click();
await browser.wait(EC.visibilityOf($('#grid')), timeoutTime);
await browser.wait(EC.invisibilityOf(loadBlocker), timeoutTime);
await $$('.btn')
.filter(elem => elem.getText().then(text => text === 'GotoPrevSheet'))
.first()
.click();
await browser.wait(EC.urlContains(targetSheetId), timeoutTime);
Stack trace:
NoSuchElementError: Index out of bound. Trying to access element at index: 0, but there are only 0 elements that match locator By(css selector, .btn)
at selenium_webdriver_1.promise.all.then (node_modules/protractor/built/element.js:274:27)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)Error
at ElementArrayFinder.applyAction_ (node_modules/protractor/built/element.js:459:27)
at ElementArrayFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:91:29)
at ElementFinder.(anonymous function).args [as click] (node_modules/protractor/built/element.js:831:22)
at Context.it (test/e2e/navigation-actions.comp.spec.js:128:8)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)