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