Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Sergio Vergata
BigBlueButton LiveStreaming
Commits
b9806b14
Commit
b9806b14
authored
May 26, 2021
by
Martin Schrott
Browse files
changed the element handling on login of the chat user
parent
2d6749dd
Changes
1
Show whitespace changes
Inline
Side-by-side
chat.py
View file @
b9806b14
...
...
@@ -83,8 +83,10 @@ def bbb_browser():
time
.
sleep
(
6
)
element
=
EC
.
invisibility_of_element
((
By
.
CSS_SELECTOR
,
'.ReactModal__Overlay'
))
# wait for message input:
element
=
EC
.
presence_of_element_located
((
By
.
ID
,
'message-input'
))
WebDriverWait
(
browser
,
selenium_timeout
).
until
(
element
)
browser
.
find_element_by_id
(
'message-input'
).
send_keys
(
"Viewers of the live stream can now send messages to this meeting"
)
browser
.
find_elements_by_css_selector
(
'[aria-label="Send message"]'
)[
0
].
click
()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment