当前位置: 首页>>代码示例>>Python>>正文


Python AppCommanUtility.select_sub_tool方法代码示例

本文整理汇总了Python中GeoshieldCommonFiles.AppCommanUtility.select_sub_tool方法的典型用法代码示例。如果您正苦于以下问题:Python AppCommanUtility.select_sub_tool方法的具体用法?Python AppCommanUtility.select_sub_tool怎么用?Python AppCommanUtility.select_sub_tool使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在GeoshieldCommonFiles.AppCommanUtility的用法示例。


在下文中一共展示了AppCommanUtility.select_sub_tool方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: click_right_tab_historic

# 需要导入模块: from GeoshieldCommonFiles import AppCommanUtility [as 别名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import select_sub_tool [as 别名]
def click_right_tab_historic(driver, agency_feed_item_avl_unitid_text, agency_feed_avl, index, ws_index):

    AppCommanUtility.select_sub_tool(driver, "Historic", index, ws_index, class_name="removeRightBorder")

    agency_feed_avl_fill_data(driver, "Unit Id", agency_feed_avl, index, ws_index)

    agency_feed_date_fill_date(driver, "Select by Unit")

    fill_data_select_date(driver)

    click_okbtn_historic_select_by_unit_tab(driver, agency_feed_avl, index, ws_index)
开发者ID:AGOL007,项目名称:Python-GSHLD-Code,代码行数:13,代码来源:SeleniumActionsAgencyFeedAVL.py

示例2: click_agency_feed_lpr_historic_select_by_lpn

# 需要导入模块: from GeoshieldCommonFiles import AppCommanUtility [as 别名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import select_sub_tool [as 别名]
def click_agency_feed_lpr_historic_select_by_lpn(driver, agency_feed_lpr_textbox, agency_feed_lpr_item, index, ws_index):

    AppCommanUtility.select_sub_tool(driver, "Historic",  index, ws_index, class_name="removeRightBorder")

    agency_feed_lpr_fill_data(driver, "License Plate Number", agency_feed_lpr_textbox, index, ws_index)

    agency_feed_lpr_ddl_list(driver, "Hits", agency_feed_lpr_item, index, ws_index)

    AppCommanUtility.select_ddl_item(driver, "All", agency_feed_lpr_item, index, ws_index)

    agency_feed_lpr_ddl_list(driver, "Unit", agency_feed_lpr_item, index, ws_index)

    AppCommanUtility.select_ddl_item(driver, "ALL", agency_feed_lpr_item, index, ws_index)

    agency_feed_date_fill_date(driver, "Select by LPN")

    click_lpr_select_by_lpn_okbtn(driver, agency_feed_lpr_item, index, ws_index)
开发者ID:AGOL007,项目名称:Python-GSHLD-Code,代码行数:19,代码来源:SeleniumActionsAgencyFeedLPR.py

示例3: click_utilities_item_selection_proximity

# 需要导入模块: from GeoshieldCommonFiles import AppCommanUtility [as 别名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import select_sub_tool [as 别名]
def click_utilities_item_selection_proximity(driver, tools_utilities_selection_item, sub_layer_name, tool_selection_textbox_distance_text, index, ws_index):

    """ Method to select the tab proximity and fill data in proximity """

    AppCommanUtility.click_maximize_btn(driver, tools_utilities_selection_item, index, ws_index)

    AppCommanUtility.select_sub_tool(driver, "Proximity", index, ws_index, class_name="removeRightBorder")

    utilities_selection_ddl_list(driver, "Primary Objects Layer", tools_utilities_selection_item, index, ws_index, class_name="proximityRowContainer", class_name_label="proximityLabelText")
    AppCommanUtility.select_ddl_item(driver, sub_layer_name, tools_utilities_selection_item, index, ws_index)

    fill_data_utilities_selection(driver, "Distance", tool_selection_textbox_distance_text, tools_utilities_selection_item, index, ws_index, class_name="proximityRowContainer", class_name_label="proximityLabelText")

    utilities_selection_ddl_list(driver, "Unit", tools_utilities_selection_item, index, ws_index, class_name="proximityRowContainer", class_name_label="proximityLabelText")
    AppCommanUtility.select_ddl_item(driver, "Miles", tools_utilities_selection_item, index, ws_index)

    utilities_selection_ddl_list(driver, "Nearby Objects Layer", tools_utilities_selection_item, index, ws_index, class_name="proximityRowContainer", class_name_label="proximityLabelText")
    AppCommanUtility.select_ddl_item(driver, sub_layer_name, tools_utilities_selection_item, index, ws_index)

    tool_selection_click_ok_btn(driver, class_name="proximityButton", index=1)
    time.sleep(1)
开发者ID:AGOL007,项目名称:Python-GSHLD-Code,代码行数:23,代码来源:SeleniumActionTestToolSelection.py


注:本文中的GeoshieldCommonFiles.AppCommanUtility.select_sub_tool方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。