本文整理匯總了Python中GeoshieldCommonFiles.AppCommanUtility.click_graphics_tab方法的典型用法代碼示例。如果您正苦於以下問題:Python AppCommanUtility.click_graphics_tab方法的具體用法?Python AppCommanUtility.click_graphics_tab怎麽用?Python AppCommanUtility.click_graphics_tab使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類GeoshieldCommonFiles.AppCommanUtility
的用法示例。
在下文中一共展示了AppCommanUtility.click_graphics_tab方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: tool_bomb_blast_validation
# 需要導入模塊: from GeoshieldCommonFiles import AppCommanUtility [as 別名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import click_graphics_tab [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)
示例2: find_coordinates_tool_validation
# 需要導入模塊: from GeoshieldCommonFiles import AppCommanUtility [as 別名]
# 或者: from GeoshieldCommonFiles.AppCommanUtility import click_graphics_tab [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)