Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
test: add e2e tests to context menu #1571
test: add e2e tests to context menu #1571
Changes from 12 commits
7af3ee8
ff92198
4c4de6e
5bccaec
d10e121
df52f75
ea002fe
976add3
ae2d664
762b61e
baea73d
0cc5db1
5fd344b
c0aca30
9f224ef
6c2b017
f4d8672
03ca9c7
4674639
cec3046
9799e9f
9395443
94af812
e42f72b
390ddfe
f6b2ceb
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
This method does open advanced filters, but it just seems to be doing just the first column of the first grid (e.g. you can't pass in a specific column or even a specific grid to open the advanced filter on). I'd rather be more specific with the name of the function (e.g.
openFirstAdvancedFilters
), or allow passing in the grid locator and an optional offset, e.g.: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.
This is exactly the same setup as in
table-operations.spec.ts
. We could refactor this into a utility method used by both, but I think in this case I would rather just move these table specific context menu tests totable-operations.spec.ts
(since we're really testing the table operations here, we're just accessing them from the context menu).