Hi there,
I'm writing an integration test for my plugin (JIRA Server).
My test simply goes to the "ViewCustomFields" page and clicks the "Add custom field" button.
My problem is that the "Add custom field" button is obscured by the flags, and the page object can not click on it. So, does anyone know any ways that can eliminate those flags? Please let me know.
Thank you!
I did it by edit Announcement Banner, add my css style into it:
<
style
type
=
"text/css"
>
#aui-flag-container {
display:none !important;
}
.jira-help-tip {
display:none !important;
}
</
style
>
Link to Edit Announcement Banner page:
[your_address]/jira/secure/admin/EditAnnouncementBanner!default.jspa
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.