Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
wdio snapshots updated
Browse files Browse the repository at this point in the history
  • Loading branch information
KV106606Viswanath committed Feb 8, 2024
1 parent 1a9f475 commit ae3e135
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/terra-date-input/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

* Fixed
* Fixed the text color issue of month select list options.
* Fixed the screen reader issue where it announced a different date than the one displayed.

## 1.51.0 - (February 1, 2024)

* Changed
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions packages/terra-date-input/tests/wdio/date-input-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,19 @@ Terra.describeViewports('Date Input', ['medium'], () => {
});

describe('Month Select placeholder option clears value', () => {
it('Selects February in month select', () => {
it('Selects January in month select', () => {
browser.url('/raw/tests/cerner-terra-framework-docs/date-input/day-month-year-date-input');
Terra.hideInputCaret('input[name="terra-date-day-date-input"]');
Terra.hideInputCaret('input[name="terra-date-year-date-input"]');
$('select[name="terra-date-month-date-input"]').click();
browser.keys(['ArrowDown']);
browser.keys(['ArrowDown']);
browser.keys(['Enter']);
Terra.validates.element('Month Selected');
});

it('Selects Placeholder option to clear selected value', () => {
$('select[name="terra-date-month-date-input"]').click();
browser.keys(['ArrowUp']);
browser.keys(['ArrowUp']);
browser.keys(['Enter']);
Terra.validates.element('Value Cleared');
});
Expand Down

0 comments on commit ae3e135

Please sign in to comment.