Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frontend-clients
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
frontend-clients
Commits
c64cff14
Commit
c64cff14
authored
2 months ago
by
Albert Bruns
Browse files
Options
Downloads
Patches
Plain Diff
OZG-7898 e2e fix
parent
1d58a9c8
No related branches found
No related tags found
2 merge requests
!98
OZG-725-e2e
,
!97
OZG-725-7898-forwarding-e2e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
alfa-client/apps/alfa-e2e/src/components/vorgang/vorgang-forwarding-dialog.e2e.component.ts
+51
-0
51 additions, 0 deletions
...onents/vorgang/vorgang-forwarding-dialog.e2e.component.ts
with
51 additions
and
0 deletions
alfa-client/apps/alfa-e2e/src/components/vorgang/vorgang-forwarding-dialog.e2e.component.ts
0 → 100644
+
51
−
0
View file @
c64cff14
export
class
ForwardingDialogE2EComponent
{
private
readonly
root
:
string
=
'
forwarding-dialog
'
;
private
readonly
cancelButton
:
string
=
'
cancel-dialog-button
'
;
private
readonly
cancelIconButton
:
string
=
'
cancel-dialog-icon-button
'
;
private
readonly
forwardingButton
:
string
=
'
forwarding-button
'
;
private
readonly
searchText
:
string
=
'
instant_search-text-input
'
;
private
readonly
searchEntry
:
string
=
'
item-button
'
;
private
readonly
forwardingItem
:
string
=
'
forwarding-item
'
;
private
readonly
changeButton
:
string
=
'
forwarding-item-change-button
'
;
private
readonly
zufiSearch
:
string
=
'
zufi-search
'
;
public
getRoot
()
{
return
cy
.
getTestElement
(
this
.
root
);
}
public
getCancelButton
()
{
return
cy
.
getTestElement
(
this
.
cancelButton
);
}
public
getCancelIconButton
()
{
return
cy
.
getTestElement
(
this
.
cancelIconButton
);
}
public
getForwardingButton
()
{
return
cy
.
getTestElement
(
this
.
forwardingButton
);
}
public
getSearchText
()
{
return
cy
.
getTestElement
(
this
.
searchText
);
}
public
search
(
text
:
string
)
{
this
.
getSearchText
().
type
(
text
);
}
public
clickSearchEntry
(
index
:
number
):
void
{
cy
.
getTestElement
(
this
.
searchEntry
).
eq
(
index
).
click
();
}
public
getForwardingItem
()
{
return
cy
.
getTestElement
(
this
.
forwardingItem
);
}
public
getChangeButton
()
{
return
cy
.
getTestElement
(
this
.
changeButton
);
}
public
getZufiSearch
()
{
return
cy
.
getTestElement
(
this
.
zufiSearch
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment