We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
startsWith
Want to index edgedb docs https://www.edgedb.com/docs/datamodel/index
Docs exist inside this class layout_docsContent__JzhPH where JzhPH changes page to page.
layout_docsContent__JzhPH
JzhPH
Currently the selector wants fixed value. Would be nice to support [class^="layout_docsContent__JzhPH"] essentially.
[class^="layout_docsContent__JzhPH"]
The text was updated successfully, but these errors were encountered:
I tried changing getPageHtml to
getPageHtml
export function getPageHtml(page: Page) { return page.evaluate((classNameStart) => { const el = document.querySelector( `[class^='${classNameStart}']` ) as HTMLElement | null; return el?.innerText || ""; }, config.selector); }
then in config passing:
selector: `layout_docsContent`,
but that failed :(
Sorry, something went wrong.
No branches or pull requests
Want to index edgedb docs https://www.edgedb.com/docs/datamodel/index
Docs exist inside this class
layout_docsContent__JzhPH
whereJzhPH
changes page to page.Currently the selector wants fixed value. Would be nice to support
[class^="layout_docsContent__JzhPH"]
essentially.The text was updated successfully, but these errors were encountered: