MCPcopy Index your code
hub / github.com/geekcomputers/Python / find_and_hide_submit_button

Function find_and_hide_submit_button

bank_managment_system/QTFrontend.py:1629–1635  ·  view source on GitHub ↗
(page)

Source from the content-addressed store, hash-verified

1627 )
1628
1629 def find_and_hide_submit_button(page):
1630 # Find all QPushButton widgets in the page
1631 buttons = page.findChildren(QtWidgets.QPushButton)
1632 for button in buttons:
1633 if button.text() == "Submit":
1634 button.hide()
1635 break
1636
1637 find_and_hide_submit_button(check_balance_page)
1638

Callers 1

setup_main_windowFunction · 0.85

Calls 1

hideMethod · 0.80

Tested by

no test coverage detected