Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fairblue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
hosting
chat
fairblue
Commits
b83e16e4
Commit
b83e16e4
authored
6 years ago
by
Pedro Beschorner Marin
Browse files
Options
Downloads
Patches
Plain Diff
Open user list before chat and user tests
parent
fd715f3a
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
bigbluebutton-html5/tests/puppeteer/chat/util.js
+4
-1
4 additions, 1 deletion
bigbluebutton-html5/tests/puppeteer/chat/util.js
bigbluebutton-html5/tests/puppeteer/user/status.js
+4
-0
4 additions, 0 deletions
bigbluebutton-html5/tests/puppeteer/user/status.js
with
8 additions
and
1 deletion
bigbluebutton-html5/tests/puppeteer/chat/util.js
+
4
−
1
View file @
b83e16e4
const
e
=
require
(
'
./elements
'
);
const
ce
=
require
(
'
../core/elements
'
);
async
function
openChat
(
test
)
{
await
test
.
click
(
e
.
chatButton
);
// TODO: Check this if it's open before click
await
test
.
click
(
ce
.
userList
);
await
test
.
click
(
e
.
chatButton
,
true
);
await
test
.
waitForSelector
(
e
.
chatBox
);
await
test
.
waitForSelector
(
e
.
chatMessages
);
}
...
...
This diff is collapsed.
Click to expand it.
bigbluebutton-html5/tests/puppeteer/user/status.js
+
4
−
0
View file @
b83e16e4
const
Page
=
require
(
'
../core/page
'
);
const
e
=
require
(
'
./elements
'
);
const
ce
=
require
(
'
../core/elements
'
);
const
util
=
require
(
'
./util
'
);
class
Status
extends
Page
{
...
...
@@ -8,6 +9,9 @@ class Status extends Page {
}
async
test
()
{
// TODO: Check this if it's open before click
await
this
.
click
(
ce
.
userList
);
await
this
.
screenshot
(
true
);
const
status0
=
await
util
.
getTestElements
(
this
);
...
...
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