Skip to content

Commit 497138c

Browse files
Merge pull request #103 from aquality-automation/feature/fix_testrun_view_performance
Use promise all on Init
2 parents 7f60228 + 6d24161 commit 497138c

File tree

6 files changed

+534
-143
lines changed

6 files changed

+534
-143
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

3+
## 0.3.10 (unreleased)
4+
5+
Features:
6+
7+
Bugfixes:
8+
- Test run View Page performance is bad -> [View Issue](https://github.com/aquality-automation/aquality-tracking/issues/99)
9+
310
## 0.3.9 (2020-04-21)
411

512
Features:

e2e/elements/datepicker.element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export class DatePicker extends BaseElement {
1919
`.//*[contains(@class, 'main-calendar-years')]//*[contains(@class, 'year-unit') and normalize-space(text())='${year}']`))
2020
dayButton = (day: number) => this.element
2121
.element(by.xpath(
22-
`.//*[contains(@class, 'main-calendar-days')]//*[contains(@class, 'day-unit') and normalize-space(text())='${day}']`))
22+
`.//*[contains(@class, 'main-calendar-days')]//*[contains(@class, 'day-unit') and not(contains(@class, 'is-prev-month')) and normalize-space(text())='${day}']`))
2323

2424
openCalendar() {
2525
return this.linkInput.click();

0 commit comments

Comments
 (0)