Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@linode/manager": Upcoming Features
---

UX enhancements of `CloudPulseDateTimeRangePicker` and `DateTimeRangePicker` components in cloudpulse metrics ([#13216](https://github.com/linode/manager/pull/13216))
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,11 @@ describe('Integration Tests for DBaaS Dashboard ', () => {
.click();

// Select a time duration from the autocomplete input.
// Updated selector for MUI x-date-pickers v8 - click on the wrapper div
cy.get('[aria-labelledby="start-date"]').parent().as('startDateInput');
ui.button.findByTitle('Last hour').as('timeRangeTrigger');
cy.get('@timeRangeTrigger').click();

cy.get('@startDateInput').click();

cy.get('[data-qa-preset="Last day"]').click();
// select a different preset but cancel
ui.button.findByTitle('Last day').click();

// Click the "Apply" button to confirm the end date and time
cy.get('[data-qa-buttons="apply"]')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,12 +179,11 @@ describe('Integration Tests for Linode Dashboard ', () => {
.should('be.visible')
.click();
// Select a time duration from the autocomplete input.
// Updated selector for MUI x-date-pickers v8 - click on the wrapper div
cy.get('[aria-labelledby="start-date"]').parent().as('startDateInput');
ui.button.findByTitle('Last hour').as('timeRangeTrigger');
cy.get('@timeRangeTrigger').click();

cy.get('@startDateInput').click();

cy.get('[data-qa-preset="Last day"]').click();
// select a different preset but cancel
ui.button.findByTitle('Last day').click();

// Click the "Apply" button to confirm the end date and time
cy.get('[data-qa-buttons="apply"]')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,11 @@ describe('Integration Tests for Nodebalancer Dashboard ', () => {
.click();

// Select a time duration from the autocomplete input.
// Updated selector for MUI x-date-pickers v8 - click on the wrapper div
cy.get('[aria-labelledby="start-date"]').parent().as('startDateInput');
ui.button.findByTitle('Last hour').as('timeRangeTrigger');
cy.get('@timeRangeTrigger').click();

cy.get('@startDateInput').click();

cy.get('[data-qa-preset="Last day"]').click();
// select a different preset but cancel
ui.button.findByTitle('Last day').click();

cy.get('[data-qa-buttons="apply"]')
.should('be.visible')
Expand Down
Loading