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
Expand Up @@ -41,7 +41,8 @@ test.describe('E2E test', () => {

/** Required tests */
const requiredInteger = page.locator('input[data-test-id="0658481a174254dded4a0c1ffe6b8380"]');
requiredInteger.fill('10000');
await requiredInteger.fill('10000');
await requiredInteger.blur();
attributes = await common.getAttributes(requiredInteger);
await expect(attributes.includes('required')).toBeTruthy();
await expect(await requiredInteger.getAttribute('placeholder')).toBe('Integer Placeholder');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ test.describe('E2E test', () => {
await expect(attributes.includes('required')).toBeFalsy();

const requiredPercentage = page.locator('input[data-test-id="86a805ca8375ed5df057777df74dd085"]');
requiredPercentage.pressSequentially('10');
await requiredPercentage.pressSequentially('10');
await requiredPercentage.blur();
notrequiredPercentage.click();
attributes = await common.getAttributes(requiredPercentage);
await expect(attributes.includes('required')).toBeTruthy();
Expand Down