The following changed lines in this MR contain testid selectors:
### Deprecated `testid` selectors
The following changed lines in this MR contain `testid` selectors:
* #{lines_with_testids.join("\n* ")}
MARKDOWN
lines_with_testids.eachdo|file,lines|
markdown(<<~MARKDOWN)
#### `#{file}`
```shell
#{lines.join("\n")}
```
MARKDOWN
end
markdown(<<~MARKDOWN)
If the `e2e:package-and-test` job in the `qa` stage has run automatically, please ensure the tests are passing.
If the `e2e:package-and-test` job in the `qa` stage has run automatically, please ensure the tests are passing.
If the job has not run, please start the `trigger-omnibus-and-follow-up-e2e` job in the `qa` stage and ensure the tests in `follow-up-e2e:package-and-test-ee` pipeline are passing.
If the job has not run, please start the `trigger-omnibus-and-follow-up-e2e` job in the `qa` stage and ensure the tests in `follow-up-e2e:package-and-test-ee` pipeline are passing.
...
@@ -54,12 +63,27 @@ end
...
@@ -54,12 +63,27 @@ end
ifdeprecated_qa_class.any?
ifdeprecated_qa_class.any?
markdown(<<~MARKDOWN)
markdown(<<~MARKDOWN)
### Deprecated data-qa-selector
### Deprecated `data-qa-selector` selectors
MARKDOWN
markdown(<<~MARKDOWN)
The following lines in this MR contain deprecated `data-qa-selector` selectors:
The following lines in this MR contain deprecated data-qa-selector selectors:
MARKDOWN
deprecated_qa_class.eachdo|file,lines|
markdown(<<~MARKDOWN)
#### `#{file}`
* #{deprecated_qa_class.join("\n* ")}
```shell
#{lines.join("\n")}
```
MARKDOWN
end
markdown(<<~MARKDOWN)
Please ensure all deprecated data-qa-selector attributes are replaced with data-testid attributes in accordance with our [Testing Guide](https://docs.gitlab.com/ee/development/testing_guide/end_to_end/page_objects.html#data-testid-vs-data-qa-selector).
Please ensure all deprecated data-qa-selector attributes are replaced with data-testid attributes in accordance with our [Testing Guide](https://docs.gitlab.com/ee/development/testing_guide/end_to_end/page_objects.html#data-testid-vs-data-qa-selector).