mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
fix scrollpanel selector
This commit is contained in:
parent
2b2a4867bd
commit
5939d62499
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ module.exports.scrollToTimelineTop = async function(session) {
|
|||
session.log.step(`scrolls to the top of the timeline`);
|
||||
await session.page.evaluate(() => {
|
||||
return Promise.resolve().then(async () => {
|
||||
const timelineScrollView = document.querySelector(".mx_RoomView .gm-scroll-view");
|
||||
const timelineScrollView = document.querySelector(".mx_RoomView_timeline .mx_ScrollPanel");
|
||||
let timedOut = false;
|
||||
let timeoutHandle = null;
|
||||
// set scrollTop to 0 in a loop and check every 50ms
|
||||
|
|
Loading…
Reference in a new issue