-
Notifications
You must be signed in to change notification settings - Fork 4
Create QC annotation directly from plots #1147
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
Conversation
labkey-jeckels
left a comment
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.
Pending updates to address manual test results.
| }; | ||
|
|
||
|
|
||
| let nonAnnotationGroups = this.getSvgElForPlot(plot).selectAll("g.non-annotation-group").data(nonAnnotationsData) |
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.
I understand non-annotation as a variable name for the dates without annotations, but it seems less descriptive when it comes to the UI elements. Consider add-annotation or similar since that's what the UI element is used for.
|
|
||
| // Click the add annotation button | ||
| click(addAnnotationButton); | ||
| waitForElement(Locator.xpath("//div[contains(@class, 'x4-window')]//span[text()='Add Annotation']")); |
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.
Look at using org.labkey.test.components.ext4.Window and its WindowFinder
Rationale
https://github.com/LabKey/kanban/issues/1451
Related Pull Requests
Changes