Francisco Roldán
Results
11
comments of
Francisco Roldán
@agritheory Some things I tried: - Commit after SAVE ```python page.get_by_text("SAVE", exact=True).click() frappe.db.commit() ``` - Time after SAVE ```python page.get_by_text("SAVE", exact=True).click() time.sleep(2) ``` - Scope function in db_instance() ```python @pytest.fixture(scope="function",...