-
Notifications
You must be signed in to change notification settings - Fork 132
Adding deprecation attribute info #572
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
Changes from 1 commit
c8bb2de
016cee6
1b0cf43
62c3a58
f2d0905
5494d10
96413c4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,6 +145,7 @@ Attributes|Type|Use|Description | |
`area`|string|required|The area where this page lives. Three possible values: `admin` prepends `BACKEND_NAME` to `url`, `storefront` does not prepend anything to `url`, `external` flags the page for use with `amOnUrl`. The `url` provided must be a full URL, such as `http://myFullUrl.com/`, instead of the URL for a Magento page. | ||
`parameterized`|boolean |optional|Include and set to `"true"` if the `url` for this page has parameters that need to be replaced for proper use. | ||
`remove`|boolean|optional|The default value is `"false"`. Set to `"true"` to remove this element during parsing. | ||
`deprecated`|string|optional|Used to warn about the future deprecation of the page. String will appear in Allure reports and console output at runtime. | ||
|
||
`<page>` may contain several [`<section>`] elements. | ||
|
||
|
@@ -157,6 +158,7 @@ A section is a reusable piece or part of a page. | |
|
||
Attributes|Type|Use|Description | ||
---|---|---|--- | ||
`deprecated`|string|optional|Used to warn about the future deprecation of the section. String will appear in Allure reports and console output at runtime. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Section reference in page do not have There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please remove this from Page doc. This attr not exist here. |
||
`name`|string|required|Unique section name identifier. | ||
`remove`|boolean|optional|The default value is `"false"`. Set to `"true"` to remove this element during parsing. | ||
|
||
|
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.
Please move this to entity tag description