Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
193950b5
Commit
193950b5
authored
11 years ago
by
Joël Krähemann
Browse files
Options
Downloads
Patches
Plain Diff
FXOLAT-208: adjusted timeouts and fixed XPath Selector for tinyMCE.
parent
ac2f3a4e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/test/java/org/olat/util/FunctionalRepositorySiteUtil.java
+2
-2
2 additions, 2 deletions
...test/java/org/olat/util/FunctionalRepositorySiteUtil.java
src/test/java/org/olat/util/FunctionalUtil.java
+5
-5
5 additions, 5 deletions
src/test/java/org/olat/util/FunctionalUtil.java
with
7 additions
and
7 deletions
src/test/java/org/olat/util/FunctionalRepositorySiteUtil.java
+
2
−
2
View file @
193950b5
...
...
@@ -1122,7 +1122,7 @@ public class FunctionalRepositorySiteUtil {
selectorBuffer
.
append
(
"xpath=//div[contains(@class, '"
)
.
append
(
getRepositoryPopupCss
())
.
append
(
"')]//
form//
input[@type='text']"
);
.
append
(
"')]//input[@type='text']"
);
functionalUtil
.
waitForPageToLoadElement
(
browser
,
selectorBuffer
.
toString
());
browser
.
type
(
selectorBuffer
.
toString
(),
title
);
...
...
@@ -1135,7 +1135,7 @@ public class FunctionalRepositorySiteUtil {
selectorBuffer
.
append
(
"xpath=(//div[contains(@class, '"
)
.
append
(
getRepositoryPopupCss
())
.
append
(
"')]//
form//
div[contains(@class, '"
)
.
append
(
"')]//div[contains(@class, '"
)
.
append
(
getRepositorySaveDetailsCss
())
.
append
(
"')]//button[contains(@class, '"
)
.
append
(
functionalUtil
.
getButtonDirtyCss
())
...
...
This diff is collapsed.
Click to expand it.
src/test/java/org/olat/util/FunctionalUtil.java
+
5
−
5
View file @
193950b5
...
...
@@ -47,14 +47,14 @@ public class FunctionalUtil {
public
final
static
String
LOGIN_PAGE
=
"dmz"
;
public
final
static
String
ACKNOWLEDGE_CHECKBOX
=
"acknowledge_checkbox"
;
public
final
static
long
TIMEOUT
=
6
0000
;
public
final
static
long
POLL_INTERVAL
=
1
00
;
public
final
static
long
TIMEOUT
=
2
0000
;
public
final
static
long
POLL_INTERVAL
=
2
00
;
public
enum
WaitLimitAttribute
{
NORMAL
(
"10000"
),
EXTENDED
(
"
20
000"
),
SAVE
(
"
3
0000"
),
VERY_SAVE
(
"
6
0000"
);
EXTENDED
(
"
15
000"
),
SAVE
(
"
2
0000"
),
VERY_SAVE
(
"
3
0000"
);
private
String
extend
;
private
long
extendAsLong
;
...
...
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