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 0aabc97 commit d9c1d91Copy full SHA for d9c1d91
tests/e2e/pageObjects/recommendations-page.ts
@@ -24,10 +24,10 @@ export class RecommendationsPage {
24
async verifyVoteDisabled(): Promise<void>{
25
// Verify that user can rate recommendations with one of 3 existing types at the same time
26
await t.expect(this.veryUsefulVoteBtn
27
- .hasAttribute('disabled')).ok();
+ .hasAttribute('disabled')).ok('very useful vote button is not disabled');
28
await t.expect(this.usefulVoteBtn
29
+ .hasAttribute('disabled')).ok('useful vote button is not disabled');
30
await t.expect(this.notUsefulVoteBtn
31
+ .hasAttribute('disabled')).ok('not useful vote button is not disabled');
32
}
33
0 commit comments