# Este fluxo abre as planilhas do Excel que serão utilizadas e prepara as variáveis necessárias para se utilizar no fluxo. Ele também classifica colunas chave para garantir um funcionamento mais ágil do robô, garantindo que os processos sem etiqueta apareçam na frente. É importante ressaltar que essa parte do fluxo depende que o usuário tenha a Extensão SEI PRO baixada IF (UIAutomation.IfRemoteDesktopIsAvailable Mode: UIAutomation.CheckRemoteDesktopAvailabilityMode.IsAvailable Control: appmask['Window \'Recurso_PAD_PA - Excel\'']['MenuItem: Opções de Exibição da Faixa de Opções']) THEN Scripting.RunPowershellScript.RunScript Script: $'''# Tenta obter instância ativa do Excel $excelApp = [Runtime.InteropServices.Marshal]::GetActiveObject(\"Excel.Application\") 2>$null if ($null -eq $excelApp) { Write-Host \"Nenhuma instância do Excel está ativa.\" return } # Salva e fecha todos os arquivos abertos $workbooks = $excelApp.Workbooks if ($workbooks.Count -eq 0) { Write-Host \"O Excel está aberto, mas não há arquivos abertos.\" } else { Write-Host \"`nSalvando e fechando arquivos do Excel...\" for ($i = $workbooks.Count; $i -ge 1; $i--) { $wb = $workbooks.Item($i) $wb.Save() $wb.Close($false) Write-Host \"✔ \'$($wb.Name)\' salvo e fechado.\" } } # Fecha o Excel completamente $excelApp.Quit() [System.Runtime.Interopservices.Marshal]::ReleaseComObject($excelApp) | Out-Null [GC]::Collect() [GC]::WaitForPendingFinalizers() ''' ScriptOutput=> Fechar_Excel END WebAutomation.Click.Click BrowserInstance: SEI Control: appmask['Web Page \'h ... 009199a8fc\'']['Anchor \'processoToCSV\''] ClickType: WebAutomation.ClickType.LeftClick MouseClick: True WaitForPageToLoadTimeout: 60 MousePositionRelativeToElement: WebAutomation.RectangleEdgePoint.MiddleCenter OffsetX: 0 OffsetY: 0 WAIT 2 Folder.GetFiles Folder: Pasta_Download FileFilter: $'''*.csv''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.CreationTime SortDescending1: True SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Files=> Files SET Arquivo_Processos TO Files[0] Excel.LaunchExcel.LaunchAndOpen Path: Arquivo_Processos Visible: True ReadOnly: False LoadAddInsAndMacros: False UseMachineLocale: True Instance=> Planilha_Processos Excel.SaveExcel.SaveAs Instance: Planilha_Processos DocumentFormat: Excel.ExcelFormat.OpenXmlWorkbook DocumentPath: pasta_download UIAutomation.SetWindowState.SetStateByInstanceOrHandle WindowInstance: Planilha_Processos State: UIAutomation.WindowState.Maximized MouseAndKeyboard.SendKeys.FocusAndSendKeys TextToSend: $'''{Alt}{A}{A}{S}''' DelayBetweenKeystrokes: 200 SendTextAsHardwareKeys: False WAIT 3 MouseAndKeyboard.SendKeys.FocusAndSendKeys TextToSend: $'''{NumPad2}{NumPad1}''' DelayBetweenKeystrokes: 200 SendTextAsHardwareKeys: False WAIT 3 MouseAndKeyboard.SendKeys.FocusAndSendKeys TextToSend: $'''{Enter}''' DelayBetweenKeystrokes: 200 SendTextAsHardwareKeys: False BLOCK 'Erro de tempo' ON BLOCK ERROR REPEAT BLOCK END WAIT 2 END WAIT 5 Excel.CloseExcel.Close Instance: Planilha_Processos EXIT Code: 0 MouseAndKeyboard.SendKeys.FocusAndSendKeys TextToSend: $'''{Tab}{Enter}''' DelayBetweenKeystrokes: 200 SendTextAsHardwareKeys: False WAIT 5 File.Move Files: Arquivo_Processos Destination: $'''C:\\Users\\m1177904\\OneDrive - CAMG\\Diretoria\\DAJ\\TEST''' IfFileExists: File.IfExists.Overwrite MovedFiles=> MovedFiles WebAutomation.ExecuteJavascript BrowserInstance: sei Javascript: $'''{ \"properties\": { \"displayName\": \"Converter CSV para Excel\", \"description\": \"Converte um arquivo CSV para Excel quando um novo arquivo é adicionado a uma pasta específica do OneDrive.\", \"definition\": { \"$schema\": \"https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#\", \"actions\": { \"Get_file_content\": { \"type\": \"OpenApiConnection\", \"inputs\": { \"host\": { \"connectionName\": \"shared_onedriveforbusiness\", \"operationId\": \"GetFileContent\", \"apiId\": \"/providers/Microsoft.PowerApps/apis/shared_onedriveforbusiness\" }, \"parameters\": { \"id\": \"@triggerOutputs()[\'body/id\']\" } }, \"runAfter\": {} }, \"Run_script\": { \"type\": \"OpenApiConnection\", \"inputs\": { \"host\": { \"apiId\": \"/providers/Microsoft.PowerApps/apis/shared_excelonlinebusiness\", \"connectionName\": \"shared_excelonlinebusiness\", \"operationId\": \"RunScriptProd\" }, \"parameters\": { \"source\": \"me\", \"drive\": \"b!-oPdmuIN6U2PK3HlOiqAyC8IOZNbXbBJgI6HvDViR6InlOuf7fMQQJO6qFuuskRT\", \"file\": \"/Diretoria/DAJ/TEST/Conversor CSV.xlsx\", \"scriptId\": \"1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d\", \"csvText\": \"@body(\'Get_file_content\')\" } }, \"runAfter\": { \"Get_file_content\": [ \"Succeeded\" ] } }, \"Create_file\": { \"type\": \"OpenApiConnection\", \"inputs\": { \"host\": { \"connectionName\": \"shared_onedriveforbusiness\", \"operationId\": \"CreateFile\", \"apiId\": \"/providers/Microsoft.PowerApps/apis/shared_onedriveforbusiness\" }, \"parameters\": { \"folderPath\": \"/Diretoria/DAJ/TEST/Excel Converted\", \"name\": \"@concat(split(triggerOutputs()?[\'body/Name\'], \'.\')[0], \'.xls\')\", \"contentBytes\": \"@body(\'Run_script\')?[\'body\']?[\'result\']?[\'file\']\" } }, \"runAfter\": { \"Run_script\": [ \"Succeeded\" ] } } }, \"triggers\": { \"When_a_file_is_created\": { \"type\": \"OpenApiConnection\", \"inputs\": { \"host\": { \"connectionName\": \"shared_onedriveforbusiness\", \"operationId\": \"WhenAFileIsCreated\", \"apiId\": \"/providers/Microsoft.PowerApps/apis/shared_onedriveforbusiness\" }, \"parameters\": { \"folderId\": \"C:\\Users\\m1177904\\OneDrive - CAMG\\Diretoria\\DAJ\\TEST\" } } } } } } }''' Result=> Result Display.ShowMessageDialog.ShowMessageWithTimeout Title: $'''Sei PRO''' Message: $'''A partir daqui, o fluxo apenas funciona com a extensão SEI PRO''' Icon: Display.Icon.Warning Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False Timeout: 2 ButtonPressed=> B_SeiPRO Excel.SortCellsFromExcel.SortWorksheet Instance: Planilha_Processos SortParameters: { ^['Column1', 'Column2'], [$'''J''', $'''desc'''] } FirstRowIsHeader: True Excel.SortCellsFromExcel.SortWorksheet Instance: Planilha_Processos SortParameters: { ^['Column1', 'Column2'], [$'''E''', $'''asc'''] } FirstRowIsHeader: True SET Linha_Índice_Gravar TO 2 SET Caminho_Controle TO $'''%Pasta_Download%\\%Nome_Excel_Controle%.xlsx''' Excel.LaunchExcel.LaunchAndOpenUnderExistingProcess Path: Caminho_Controle Visible: True ReadOnly: False UseMachineLocale: False Instance=> Controle UIAutomation.FocusWindow.FocusByInstanceOrHandle WindowInstance: Controle WAIT 2 # Grava os processos capturados na planilha de controle desejada, registrando o processo de marcação. O processo também irá gravar a data do dia na coluna "Data". Excel.SetActiveWorksheet.ActivateWorksheetByName Instance: Controle Name: Nome_Planilha_Controle Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''K''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Tipo Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''E''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Etiqueta Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''J''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Especificação LOOP WHILE (Etiqueta) = ($'''-''') IF Contains(Especificação, Especificação_Desejada, False) THEN Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''B''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Processo Excel.GetFirstFreeRowOnColumn Instance: Controle Column: Coluna_Processo FirstFreeRowOnColumn=> Linha_Última Excel.WriteToExcel.WriteCell Instance: Controle Value: Processo Column: Coluna_Processo Row: Linha_Última Excel.WriteToExcel.WriteCell Instance: Controle Value: Especificação Column: $'''C''' Row: Linha_Última Excel.WriteToExcel.WriteCell Instance: Controle Value: Data_Dia Column: Coluna_Data Row: Linha_Última Variables.IncreaseVariable Value: Linha_Índice_Gravar IncrementValue: 1 Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''E''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Etiqueta Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''J''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Especificação ELSE IF Contains(Tipo, Tipo_Desejado, False) THEN Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''B''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Processo Excel.GetFirstFreeRowOnColumn Instance: Controle Column: Coluna_Processo FirstFreeRowOnColumn=> Linha_Última Excel.WriteToExcel.WriteCell Instance: Controle Value: Processo Column: Coluna_Processo Row: Linha_Última Excel.WriteToExcel.WriteCell Instance: Controle Value: Data_Dia Column: Coluna_Data Row: Linha_Última Variables.IncreaseVariable Value: Linha_Índice_Gravar IncrementValue: 1 Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''E''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Etiqueta Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''K''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Tipo ELSE IF NotContains(Especificação, Especificação_Desejada, False) THEN Variables.IncreaseVariable Value: Linha_Índice_Gravar IncrementValue: 1 Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''E''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Etiqueta Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''K''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Tipo Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''J''' StartRow: Linha_Índice_Gravar GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Especificação END END Display.ShowMessageDialog.ShowMessageWithTimeout Title: $'''Sei PRO''' Message: $'''A partir daqui, o fluxo apenas funciona com a extensão SEI PRO''' Icon: Display.Icon.Warning Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: False Timeout: 3 ButtonPressed=> SeiPRO DISABLE WebAutomation.Click.Click BrowserInstance: sei Control: appmask['Web Page \'h ... 009199a8fc\'']['Anchor \'processoToCSV\''] ClickType: WebAutomation.ClickType.LeftClick MouseClick: True WaitForPageToLoadTimeout: 60 MousePositionRelativeToElement: WebAutomation.RectangleEdgePoint.MiddleCenter OffsetX: 0 OffsetY: 0 Folder.GetFiles Folder: Pasta_Download FileFilter: $'''*.csv''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.CreationTime SortDescending1: True SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Files=> Files WAIT 2 Folder.GetFiles Folder: $'''C:\\Users\\m1177904\\Downloads''' FileFilter: $'''*.csv''' IncludeSubfolders: False FailOnAccessDenied: True SortBy1: Folder.SortBy.CreationTime SortDescending1: True SortBy2: Folder.SortBy.NoSort SortDescending2: False SortBy3: Folder.SortBy.NoSort SortDescending3: False Files=> Files SET Arquivo_Processos TO Files[0] Excel.LaunchExcel.LaunchAndOpen Path: Arquivo_Processos Visible: True ReadOnly: False LoadAddInsAndMacros: False UseMachineLocale: True Instance=> Planilha_Processos Excel.SortCellsFromExcel.SortWorksheet Instance: Planilha_Processos SortParameters: { ^['Column1', 'Column2'], [$'''E''', $'''asc'''] } FirstRowIsHeader: True SET Linha_Índice TO 2 Excel.ReadFromExcel.ReadCell Instance: Planilha_Processos StartColumn: $'''E''' StartRow: Linha_Índice GetCellContentsMode: Excel.GetCellContentsMode.FormattedTextValues CellValue=> Etiqueta # Grava os processos sem etiqueta na planilha de registro de PADs Excel.SaveExcel.SaveAs Instance: Planilha_Processos DocumentFormat: Excel.ExcelFormat.FromExtension DocumentPath: pasta_onedrive # [ControlRepository][PowerAutomateDesktop] { "ControlRepositorySymbols": [ { "IgnoreImagesOnSerialization": false, "Repository": "{\r\n \"Screens\": [\r\n {\r\n \"Controls\": [\r\n {\r\n \"AutomationProtocol\": \"uia2\",\r\n \"ScreenShot\": null,\r\n \"ElementTypeName\": \"Menu Item\",\r\n \"InstanceId\": \"f3c9b59b-0b4a-4dc8-bec7-d43572eeb5ac\",\r\n \"Name\": \"MenuItem: Opções de Exibição da Faixa de Opções\",\r\n \"SelectorCount\": 1,\r\n \"Selectors\": [\r\n {\r\n \"CustomSelector\": null,\r\n \"Elements\": [\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"EXCEL2\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Enabled\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Process\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"EXCEL\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Visible\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Pane 'EXCEL2'\",\r\n \"Tag\": \"pane\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"MsoCommandBar\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Enabled\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"Ribbon\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Visible\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Tool Bar 'Ribbon'\",\r\n \"Tag\": \"toolbar\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"MsoWorkPane\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Enabled\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"Ribbon\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Process\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"EXCEL\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Visible\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Pane 'Ribbon'\",\r\n \"Tag\": \"pane\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"NUIPane\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Enabled\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Process\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"EXCEL\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Visible\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Pane 'NUIPane'\",\r\n \"Tag\": \"pane\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"NetUIHWNDElement\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Enabled\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Process\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"EXCEL\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Visible\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Pane 'NetUIHWNDElement'\",\r\n \"Tag\": \"pane\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"NetUInetpane\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Enabled\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"Ribbon\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Process\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"EXCEL\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Visible\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Pane 'Ribbon'\",\r\n \"Tag\": \"pane\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"NetUIAnchor\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Enabled\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"Opções de Exibição da Faixa de Opções\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Selected\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Visible\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Menu Item 'Opções de Exibição da Faixa de Opções'\",\r\n \"Tag\": \"menuitem\"\r\n }\r\n ],\r\n \"Ignore\": false,\r\n \"ImageSelector\": null,\r\n \"IsCustom\": false,\r\n \"IsImageBased\": false,\r\n \"IsPlaceholderSelector\": false,\r\n \"IsWindowsInstance\": false,\r\n \"Name\": \"Default Selector\",\r\n \"Properties\": []\r\n }\r\n ],\r\n \"Tag\": \"menuitem\",\r\n \"ScreenshotPath\": \"controlRepo-screenshots\\\\1f8df53e-d06d-401d-be37-43a6cc958ca3.png\"\r\n }\r\n ],\r\n \"Handle\": {\r\n \"value\": 0\r\n },\r\n \"ProcessName\": null,\r\n \"ScreenShot\": null,\r\n \"ElementTypeName\": \"Window\",\r\n \"InstanceId\": \"c229f346-e73b-4337-b0ba-46f9c3af863e\",\r\n \"Name\": \"Window 'Recurso_PAD_PA - Excel'\",\r\n \"SelectorCount\": 1,\r\n \"Selectors\": [\r\n {\r\n \"CustomSelector\": null,\r\n \"Elements\": [\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"XLMAIN\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Enabled\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"Recurso_PAD_PA - Excel\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Process\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"EXCEL\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Visible\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": true\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Window 'Recurso_PAD_PA - Excel'\",\r\n \"Tag\": \"window\"\r\n }\r\n ],\r\n \"Ignore\": false,\r\n \"ImageSelector\": null,\r\n \"IsCustom\": false,\r\n \"IsImageBased\": false,\r\n \"IsPlaceholderSelector\": false,\r\n \"IsWindowsInstance\": false,\r\n \"Name\": \"Default Selector\",\r\n \"Properties\": []\r\n }\r\n ],\r\n \"Tag\": \"window\",\r\n \"ScreenshotPath\": \"controlRepo-screenshots\\\\6b901f3e-b177-4278-8388-84887adc8cac.png\"\r\n },\r\n {\r\n \"Controls\": [\r\n {\r\n \"AutomationProtocol\": \"uia3\",\r\n \"ScreenShot\": null,\r\n \"ElementTypeName\": \"Anchor\",\r\n \"InstanceId\": \"42fcbdea-d51e-45f5-bd9b-d43cdb26e7f3\",\r\n \"Name\": \"Anchor 'processoToCSV'\",\r\n \"SelectorCount\": 1,\r\n \"Selectors\": [\r\n {\r\n \"CustomSelector\": null,\r\n \"Elements\": [\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"newSEI\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Body 'GOVERNO DO ESTADO DE MINAS GERAIS Versão d ... Exportar informações de processos em planilha CSV'\",\r\n \"Tag\": \"body\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"vh-100 vw-100 d-flex flex-column m-0 border-0\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"divInfraAreaGlobal\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Div 'GOVERNO DO ESTADO DE MINAS GERAIS Versão d ... = document.getElementById(\\\"divTabelaProcesso\\\");'\",\r\n \"Tag\": \"div\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"w-100 flex-grow-1 d-flex flex-row divInfraAreaTela\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"divInfraAreaTela\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Div 'Acompanhamento Especial Base de Conhecimento Blocos ... = document.getElementById(\\\"divTabelaProcesso\\\");'\",\r\n \"Tag\": \"div\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"flex-grow-1 px-3 infraAreaTelaDEscondePequeno\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"divInfraAreaTelaD\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Div 'Controle de Processos Último acesso na seg ... = document.getElementById(\\\"divTabelaProcesso\\\");'\",\r\n \"Tag\": \"div\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"panelHomePro\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Div 'Controle de Processos Último acesso na seg ... 2306/2025-12 (13638514625) Adicionar prazo'\",\r\n \"Tag\": \"div\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"controleProcPro panelHomePro\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"processosSEIPro\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Div 'Controle de Processos Último acesso na seg ... 2306/2025-12 (13638514625) Adicionar prazo'\",\r\n \"Tag\": \"div\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Action\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"https://www.sei.mg.gov.br/sei/controlador.php?acao=procedimento_controlar&acao_origem=procedimento_controlar&tipo_filtro=&infra_sistema=100000100&infra_unidade_atual=110001402&infra_hash=f2ce7bbb216522ad89885c57b5e45064f2b81f5187fc544f570ccd7153973d59\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"h-100\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"frmProcedimentoControlar\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Method\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"post\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Name\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Form 'Último acesso na segunda-feira, 09 de junho às ... 2306/2025-12 (13638514625) Adicionar prazo'\",\r\n \"Tag\": \"form\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"h-100 d-flex flex-column\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"divControleProcessosConteudo\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Div 'Último acesso na segunda-feira, 09 de junho às ... 2306/2025-12 (13638514625) Adicionar prazo'\",\r\n \"Tag\": \"div\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"collapseTabelaProcesso\"\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"newFiltro\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": true,\r\n \"Name\": \"Div 'newFiltro'\",\r\n \"Tag\": \"div\"\r\n },\r\n {\r\n \"Attributes\": [\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Class\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"newLink\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Href\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n },\r\n {\r\n \"Ignore\": false,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Id\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": \"processoToCSV\"\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": true,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Ordinal\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": 0\r\n },\r\n {\r\n \"Ignore\": true,\r\n \"IsOrdinal\": false,\r\n \"IsDisabledAttribute\": false,\r\n \"Name\": \"Title\",\r\n \"Operation\": \"EqualTo\",\r\n \"Value\": null\r\n }\r\n ],\r\n \"CustomValue\": null,\r\n \"Ignore\": false,\r\n \"Name\": \"Anchor 'processoToCSV'\",\r\n \"Tag\": \"a\"\r\n }\r\n ],\r\n \"Ignore\": false,\r\n \"ImageSelector\": null,\r\n \"IsCustom\": false,\r\n \"IsImageBased\": false,\r\n \"IsPlaceholderSelector\": false,\r\n \"IsWindowsInstance\": false,\r\n \"Name\": \"Default Selector\",\r\n \"Properties\": []\r\n }\r\n ],\r\n \"Tag\": \"a\",\r\n \"ScreenshotPath\": \"controlRepo-screenshots\\\\3d29dfaa-2f35-40a0-a92b-2749d08ec827.png\"\r\n }\r\n ],\r\n \"Handle\": {\r\n \"value\": 0\r\n },\r\n \"ProcessName\": null,\r\n \"ScreenShot\": null,\r\n \"ElementTypeName\": \"Web Page\",\r\n \"InstanceId\": \"0a1a2eb2-5d62-49ed-b526-88bb072668a4\",\r\n \"Name\": \"Web Page 'h ... 009199a8fc'\",\r\n \"SelectorCount\": 1,\r\n \"Selectors\": [\r\n {\r\n \"CustomSelector\": null,\r\n \"Elements\": [\r\n {\r\n \"Attributes\": [],\r\n \"CustomValue\": \"domcontainer\",\r\n \"Ignore\": false,\r\n \"Name\": \"Web Page 'https://www.sei.mg.gov.br/sei/controlador.php?acao=procedimento_controlar&acao_origem=principal&acao_retorno=principal&inicializando=1&infra_sistema=100000100&infra_unidade_atual=110001402&infra_hash=56f21edfd5cc1b2f91694cb393cb51ce70eed9f8c01ccf015d71d8009199a8fc'\",\r\n \"Tag\": \"domcontainer\"\r\n }\r\n ],\r\n \"Ignore\": false,\r\n \"ImageSelector\": null,\r\n \"IsCustom\": false,\r\n \"IsImageBased\": false,\r\n \"IsPlaceholderSelector\": false,\r\n \"IsWindowsInstance\": false,\r\n \"Name\": \"Default Selector\",\r\n \"Properties\": []\r\n }\r\n ],\r\n \"Tag\": \"domcontainer\",\r\n \"ScreenshotPath\": \"controlRepo-screenshots\\\\37962af3-c0f9-4273-84e1-4f1e03473e73.png\"\r\n }\r\n ],\r\n \"Version\": 1\r\n}", "ImportMetadata": { "DisplayName": "Computador local", "ConnectionString": "", "Type": "Local", "DesktopType": "local" }, "Name": "appmask" } ], "ImageRepositorySymbol": { "Repository": "{\r\n \"Folders\": [],\r\n \"Images\": [],\r\n \"Version\": 1\r\n}", "ImportMetadata": {}, "Name": "imgrepo" }, "ConnectionReferences": [] }