generate_bill_page_locator.py 800 B

1234567891011121314
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. '''
  4. @File : generate_bill_page_locator.py
  5. @Time : 2025/01/04 11:27:52
  6. @Author : dulip3ng
  7. @Version : 1.0
  8. @Desc : None
  9. '''
  10. class GenerateBillPageLocator:
  11. BUTTON_ARGS_LOC = "//div[contains(@id, '-FMAINTAB_c-') and contains(@class, 'k-content') and contains(@class, 'k-state-active')]//div[contains(@id, '-BILLMENU_TOOLBAR')]/ul/li[contains(@class, 'k-item k-state-default kdmenuitem') and not(contains(@class, 'kd-menubtn-disabled'))]/span/span[text()='%s']"
  12. LINE_NO_ARGS_LOC = "//div[contains(@id, '-FMAINTAB_c-') and contains(@class, 'k-content') and contains(@class, 'k-state-active')]//div[substring(@id, string-length(@id) - 8) = '-FPNLLIST']//span[@data-field=//th[@data-title='序号']/@data-field and @data-rowid='%d']"