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
Merge requests
!82
OZG-7507 use new open dialog button
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
OZG-7507 use new open dialog button
OZG-7507-admin-organisationsEinheit-loeschen
into
main
Overview
13
Commits
26
Pipelines
0
Changes
36
Merged
Sebastian Bergandy
requested to merge
OZG-7507-admin-organisationsEinheit-loeschen
into
main
3 months ago
Overview
13
Commits
26
Pipelines
0
Changes
36
Expand
Sub task: OZG-7821
0
0
Merge request reports
Compare
main
version 16
cb7b35c2
2 months ago
version 15
e229480b
2 months ago
version 14
311e0879
2 months ago
version 13
64151fae
2 months ago
version 12
d42d528d
2 months ago
version 11
af93218a
2 months ago
version 10
a915b3b2
2 months ago
version 9
30d4248b
2 months ago
version 8
994eadc5
3 months ago
version 7
6b86812c
3 months ago
version 6
8de3618f
3 months ago
version 5
4cb9e7b3
3 months ago
version 4
178e82f3
3 months ago
version 3
bf7e9750
3 months ago
version 2
a3d55894
3 months ago
version 1
058f297b
3 months ago
main (base)
and
latest version
latest version
7e874d40
26 commits,
2 months ago
version 16
cb7b35c2
25 commits,
2 months ago
version 15
e229480b
24 commits,
2 months ago
version 14
311e0879
23 commits,
2 months ago
version 13
64151fae
22 commits,
2 months ago
version 12
d42d528d
18 commits,
2 months ago
version 11
af93218a
17 commits,
2 months ago
version 10
a915b3b2
16 commits,
2 months ago
version 9
30d4248b
15 commits,
2 months ago
version 8
994eadc5
14 commits,
3 months ago
version 7
6b86812c
13 commits,
3 months ago
version 6
8de3618f
12 commits,
3 months ago
version 5
4cb9e7b3
11 commits,
3 months ago
version 4
178e82f3
10 commits,
3 months ago
version 3
bf7e9750
9 commits,
3 months ago
version 2
a3d55894
8 commits,
3 months ago
version 1
058f297b
7 commits,
3 months ago
36 files
+
799
−
92
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
36
Search (e.g. *.vue) (Ctrl+P)
alfa-client/apps/admin-e2e/src/components/organisationseinheiten/organisationseinheiten.e2e.component.ts
+
40
−
9
Options
@@ -21,21 +21,52 @@
* Die sprachspezifischen Genehmigungen und Beschränkungen
* unter der Lizenz sind dem Lizenztext zu entnehmen.
*/
export
class
OrganisationsEinheitListE2EComponent
{
private
readonly
root
:
string
=
'
organisations-einheit-list
'
;
public
getRoot
():
Cypress
.
Chainable
<
Element
>
{
return
cy
.
getTestElement
(
this
.
root
);
}
public
getListItem
(
name
:
string
):
OrganisationsEinheitListItemE2EComponent
{
return
new
OrganisationsEinheitListItemE2EComponent
(
name
);
}
}
export
class
OrganisationsEinheitListItemE2EComponent
{
private
root
:
string
;
export
class
OrganisationsEinheitenE2EComponent
{
private
readonly
organisationsEinheitenList
:
string
=
'
organisations-einheit-list
'
;
private
readonly
organisationsEinheitHinzufuegen
:
string
=
'
add-organisationseinheit-button
'
;
private
readonly
organisationsEinheitItemSuffix
:
string
=
'
-organisation-item
'
;
private
readonly
deleteButton
:
string
=
'
delete-button
'
;
constructor
(
name
:
string
)
{
this
.
root
=
name
;
}
public
getRoot
():
Cypress
.
Chainable
<
Element
>
{
return
cy
.
getTestElement
(
this
.
root
+
this
.
organisationsEinheitItemSuffix
);
}
public
getDeleteButton
():
Cypress
.
Chainable
<
Element
>
{
return
this
.
getRoot
().
findTestElementWithClass
(
this
.
deleteButton
);
}
}
export
class
OrganisationsEinheitDeleteDialogE2EComponent
{
private
readonly
root
:
string
=
'
organisations-einheit-delete-dialog
'
;
private
readonly
deleteButton
:
string
=
'
dialog-delete-button
'
;
private
readonly
cancelButton
:
string
=
'
dialog-cancel-button
'
;
public
get
OrganisationsEinheitLis
t
():
Cypress
.
Chainable
<
Element
>
{
return
cy
.
getTestElement
(
this
.
organisationsEinheitenLis
t
);
public
get
Roo
t
():
Cypress
.
Chainable
<
Element
>
{
return
cy
.
getTestElement
(
this
.
roo
t
);
}
public
get
OrganisationsEinheitHinzufuegen
Button
():
Cypress
.
Chainable
<
Element
>
{
return
cy
.
getTestElement
(
this
.
organisationsEinheitHinzufuege
n
);
public
get
Delete
Button
():
Cypress
.
Chainable
<
Element
>
{
return
cy
.
getTestElement
(
this
.
deleteButto
n
);
}
public
get
ListItem
(
name
:
string
)
{
return
cy
.
getTestElement
(
name
+
this
.
organisationsEinheitItemSuffix
);
public
get
CancelButton
():
Cypress
.
Chainable
<
Element
>
{
return
cy
.
getTestElement
(
this
.
cancelButton
);
}
}
Loading