本文整理汇总了Python中GeoshieldCommonFiles.AppCommanUtility.click_bottom_panel_layer方法的典型用法代码示例。如果您正苦于以下问题:Python AppCommanUtility.click_bottom_panel_layer方法的具体用法?Python AppCommanUtility.click_bottom_panel_layer怎么用?Python AppCommanUtility.click_bottom_panel_layer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GeoshieldCommonFiles.AppCommanUtility
的用法示例。
在下文中一共展示了AppCommanUtility.click_bottom_panel_layer方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: tool_selection_proximity_validation
# 需要导入模块: from GeoshieldCommonFiles import AppCommanUtility [as 别名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import click_bottom_panel_layer [as 别名]
def tool_selection_proximity_validation(driver, tools_utilities_selection_item, index, ws_index):
""" Method to validate proximity tab """
AppCommanUtility.widget_close_icon(driver, tools_utilities_selection_item, index, ws_index)
AppCommanUtility.click_select_layer_label_container(driver, tools_utilities_selection_item, index, ws_index)
AppCommanValidation.validate_right_panel_layer_name(driver, tools_utilities_selection_item, tools_utilities_selection_item, index, ws_index)
AppCommanUtility.click_bottom_panel_layer(driver, "Proximity Results", tools_utilities_selection_item, index, ws_index)
AppCommanValidation.validate_feature_count_panel(driver, tools_utilities_selection_item, index, ws_index)
AppCommanValidation.validate_feature_count(driver, "proximityResultLayer", tools_utilities_selection_item, index, ws_index)
TestResults.open_py_excel_pass(index, ws_index)
示例2: tool_selection_buffer_validation
# 需要导入模块: from GeoshieldCommonFiles import AppCommanUtility [as 别名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import click_bottom_panel_layer [as 别名]
def tool_selection_buffer_validation(driver, tools_utilities_selection_item, index, ws_index):
""" Method to validate buffer tab"""
AppCommanUtility.click_down_panel(driver, tools_utilities_selection_item, index, ws_index)
AppCommanUtility.click_select_layer_label_container(driver, tools_utilities_selection_item, index, ws_index)
AppCommanUtility.click_right_panel_open(driver, True, tools_utilities_selection_item, index, ws_index)
# AppCommanUtility.click_graphics_tab(driver)
AppCommanValidation.validate_right_panel_layer_name(driver, tools_utilities_selection_item, tools_utilities_selection_item, index, ws_index)
AppCommanUtility.click_bottom_panel_layer(driver, "Select Buffer Results", tools_utilities_selection_item, index, ws_index)
AppCommanValidation.validate_feature_count_panel(driver, tools_utilities_selection_item, index, ws_index)
AppCommanValidation.validate_feature_count(driver, "proximityResultLayer", tools_utilities_selection_item, index, ws_index)
示例3: tool_bomb_blast_validation
# 需要导入模块: from GeoshieldCommonFiles import AppCommanUtility [as 别名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import click_bottom_panel_layer [as 别名]
def tool_bomb_blast_validation(driver,index, tool_bomb_blast_widget_name, tools_utilities_bomb_blast_item, ws_index):
""" Method to perform validation of tool bomb blast """
AppCommanUtility.click_down_panel(driver, tools_utilities_bomb_blast_item, index, ws_index)
AppCommanUtility.click_select_layer_label_container(driver, tools_utilities_bomb_blast_item, index, ws_index)
AppCommanUtility.click_right_panel_open(driver, tools_utilities_bomb_blast_item, index, boolean_value=False, ws_index=7)
AppCommanUtility.click_graphics_tab(driver, tools_utilities_bomb_blast_item, index, ws_index)
AppCommanValidation.validate_right_panel_layer_name(driver, tool_bomb_blast_widget_name, tools_utilities_bomb_blast_item, index, ws_index)
AppCommanUtility.click_bottom_panel_layer(driver, tool_bomb_blast_widget_name, tools_utilities_bomb_blast_item, index, ws_index)
AppCommanValidation.validate_feature_count_panel(driver, tools_utilities_bomb_blast_item, index, ws_index)
AppCommanValidation.validate_feature_count(driver, tool_bomb_blast_widget_name, tools_utilities_bomb_blast_item, index, ws_index)
TestLogBombBlast.open_py_excel_pass(index, ws_index)
示例4: find_coordinates_tool_validation
# 需要导入模块: from GeoshieldCommonFiles import AppCommanUtility [as 别名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import click_bottom_panel_layer [as 别名]
def find_coordinates_tool_validation(driver, tools_navigation_find_coordinates_item, index, ws_index):
""" Method to validate the tool find coordinates """
AppCommanUtility.click_down_panel(driver, tools_navigation_find_coordinates_item, index, ws_index)
AppCommanUtility.click_select_layer_label_container(driver, tools_navigation_find_coordinates_item, index, ws_index)
AppCommanUtility.click_right_panel_open(driver, False, tools_navigation_find_coordinates_item, index, ws_index)
AppCommanUtility.click_graphics_tab(driver, tools_navigation_find_coordinates_item, index, ws_index)
AppCommanValidation.validate_right_panel_layer_name(driver, tools_navigation_find_coordinates_item, tools_navigation_find_coordinates_item, index, ws_index)
AppCommanUtility.click_bottom_panel_layer(driver, tools_navigation_find_coordinates_item, tools_navigation_find_coordinates_item, index, ws_index)
AppCommanValidation.validate_feature_count_panel(driver, tools_navigation_find_coordinates_item, index, ws_index)
AppCommanValidation.validate_feature_circle_count(driver, "findCoordinates", tools_navigation_find_coordinates_item, index, ws_index)
TestResults.open_py_excel_pass(index, ws_index)