-
Notifications
You must be signed in to change notification settings - Fork 752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[SITES-22335] fix e2e tests for 6.5 and SDK #2826
Conversation
YahorC
commented
Jul 30, 2024
Q | A |
---|---|
Fixed Issues? | https://jira.corp.adobe.com/browse/SITES-22335 |
Patch: Bug Fix? | |
Minor: New Feature? | |
Major: Breaking Change? | |
Tests Added + Pass? | Yes |
Documentation Provided | Yes (code comments and or markdown) |
Any Dependency Changes? | |
License | Apache License, Version 2.0 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2826 +/- ##
=========================================
Coverage 87.21% 87.21%
Complexity 2690 2690
=========================================
Files 235 235
Lines 7173 7173
Branches 1096 1096
=========================================
Hits 6256 6256
Misses 363 363
Partials 554 554 ☔ View full report in Codecov by Sentry. |
@@ -88,6 +89,11 @@ public void setDescription(String value) { | |||
$(description).sendKeys(value); | |||
} | |||
|
|||
public void setALTText(String value) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
camelCase
public void setALTText(String value) { | |
public void setAltText(String value) { |
@@ -433,6 +433,7 @@ public void testNoImageTeaser() throws TimeoutException, InterruptedException { | |||
assertEquals(editDialog.getAssetWithoutDescriptionErrorMessage(), "Error: Please provide an asset which has a description that can be used as alt text."); | |||
editDialog.checkImageFromPageImage(); | |||
editDialog.checkAltTextFromAssetDescription(); | |||
editDialog.setALTText("alt"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
camelCase
editDialog.setALTText("alt"); | |
editDialog.setAltText("alt"); |
Quality Gate passedIssues Measures |