add test for joining preexisting room
This commit is contained in:
parent
5c4f92952f
commit
400327a0f1
5 changed files with 54 additions and 3 deletions
|
@ -82,6 +82,11 @@ async function replace_input_text(input, text) {
|
|||
await input.type(text);
|
||||
}
|
||||
|
||||
async function wait_and_query_selector(page, selector, timeout = 500) {
|
||||
await page.waitForSelector(selector, {visible: true, timeout});
|
||||
return await page.$(selector);
|
||||
}
|
||||
|
||||
// other helpers
|
||||
|
||||
function rnd_int(max) {
|
||||
|
@ -104,6 +109,7 @@ module.exports = {
|
|||
get_outer_html,
|
||||
print_elements,
|
||||
replace_input_text,
|
||||
wait_and_query_selector,
|
||||
rnd_int,
|
||||
riot_url,
|
||||
delay,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue