Power Automate Desktop : Get Details of Window (UI Automation - Data Extraction)

preview_player
Показать описание
#powerAutomatedesktop #microsoftpowerAutomatedesktop #powerAutomate #microsoftpowerAutomate #RPA

In this tutorial, we will learn how to work with UI Automation Actions for Data Extraction.

Get details of window : Gets a property of a window such as its title or its source text

Microsoft Power automate Tutorials for Beginners

●Please Subscribe Here to learn more about RPA➤
Thank you for Joining With us.

As Always, Please do Like, Subscribe and comment.

@Microsoft @MicrosoftPowerAutomate @MicrosoftPowerApps
Рекомендации по теме
Комментарии
Автор

Hi Sir, Thanks for the vedios.. Can you please put the vedio of "click UI element in window"... it is working for me only untill system restart.. once system restart this click event is not working..

raghavendradr
Автор

в скрипте %AutomationWindow% - это название контрола репозитория окна.
скрипт визуалбейсик:
Private Sub GetWindowSize()
' Get the active window
With Me.Get Details of Window
' Add the height and width properties to the Details list
.Add Property("Height")
.Add Property("Width")
' Set the window title to the value from the repository
SetWindowTitleTo .Title & " - " &
' Print the output to the console
Console.WriteLine("Window height: " & .Height & vbNewLine & _
"Window width: " & .Width)
End With
End Sub

xxxriderr