We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aec96a9 commit 8b2d787Copy full SHA for 8b2d787
src/test-utils/dom/calendar/index.ts
@@ -7,10 +7,10 @@ import ButtonWrapper from '../button';
7
export default class CalendarWrapper extends ComponentWrapper {
8
static rootSelector: string = styles.root;
9
/**
10
- * Returns a day container on the calendar.
+ * Returns a date container on the calendar.
11
*
12
- * @param row 1-based row index of the day.
13
- * @param column 1-based column index of the day.
+ * @param row 1-based row index of the day or month.
+ * @param column 1-based column index of the day or month.
14
*/
15
findDateAt(row: number, column: number): ElementWrapper {
16
return this.find(`.${styles['calendar-row']}:nth-child(${row}) .${styles['calendar-date']}:nth-child(${column})`)!;
0 commit comments