admin管理员组文章数量:1352124
I have some hacks scraping data from Grafana boards. They work fine, but need to be updated whenever Grafana is updated.
Example on class name:
fetch_tenants = page.locator("div.css-1m1z45m-grafana-select-menu").inner_text().split('\n')
Last month the class was:
fetch_tenants = page.locator("div.css-lswcil-grafana-select-menu").inner_text().split('\n')
Grafana has tons of those class="css-*-grafana-desc1-desc2"
and some may change the unique part between revisions.
Is there a way to write a regular expression for this? I found for expect()
but it does not seem to handle large generic groups, although none in the list matches
fetch_tenants = expect(page.locator("div")).to_have_class(repile(r'^css-.+-grafana-select-menu$')).inner_text().split('\n')
playwright._impl._errors.Error: LocatorAssertions.to_have_class: Error: strict mode violation: locator("div") resolved to 316 elements:
1) <div id="reactRoot">…</div> aka locator("#reactRoot")
2) <div class="grafana-app">…</div> aka locator("div").filter(has_text="Skip to main").nth(1)
3) <div class="main-view">…</div> aka get_by_text("Skip to main contentHomeDashboardsid-proMULTI-TENANT - Monthly SLA-reportSearch")
4) <div class="css-119uihn">…</div> aka get_by_text("HomeDashboardsid-proMULTI-TENANT - Monthly SLA-reportSearch or jump to...ctrl+k")
5) <div class="css-1xk8v87">…</div> aka locator("div").filter(has_text=repile(r"^HomeDashboardsid-proMULTI-TENANT - Monthly SLA-report$"))
6) <div class="css-1ilyui9">…</div> aka get_by_role("button", name="Open menu")
7) <div class="css-1f8xzyr">…</div> aka get_by_role("button", name="Open menu")
8) <div aria-hidden="true" class="css-1sts4md"></div> aka get_by_role("listitem").filter(has_text="Home").locator("div")
9) <div aria-hidden="true" class="css-1sts4md"></div> aka get_by_role("listitem").filter(has_text="Dashboards").locator("div")
10) <div aria-hidden="true" class="css-1sts4md"></div> aka get_by_role("listitem").filter(has_text="id-pro").locator("div")
...
Call log:
- LocatorAssertions.to_have_class with timeout 5000ms
- waiting for locator("div")
本文标签: pythonRegular expression in class nameStack Overflow
版权声明:本文标题:python - Regular expression in class name - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743895466a2557702.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论