-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Structured metadata: Changes to ad-hoc variable doesn't run detected_fields #849
Changes from all commits
13ee888
89b28d2
05217ef
0188a50
6b9fdcb
d6f7faf
f728aa3
d13ad86
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ export class ExplorePage { | |
} | ||
|
||
async setDefaultViewportSize() { | ||
await this.page.setViewportSize({ width: 1280, height: 720 }); | ||
await this.page.setViewportSize({ width: 1280, height: 680 }); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. window height also changed a bit in 11.3, which had the consequence of adding more lazy loaded elements into the viewport, bumping down the height a tiny bit so we don't have to update a bunch of assertions. |
||
} | ||
|
||
async setExtraTallViewportSize() { | ||
|
@@ -82,7 +82,7 @@ export class ExplorePage { | |
} | ||
|
||
async scrollToBottom() { | ||
const main = this.page.locator('main#pageContent'); | ||
const main = this.page.locator('html'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. scroll container appears to have changed in 11.3 |
||
|
||
// Scroll the page container to the bottom | ||
await main.evaluate((main) => main.scrollTo(0, main.scrollHeight)); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't know why there is an extra row now, this shouldn't have anything to do with the functional change in this PR, I think it's a consequence of the updates to 11.3