OSやアプリのバージョンが変わるとウィンドウ構造の違いによって、同じアプリであってもUI要素のセレクターが異なる場合があります。
そうなると、もちろんアプリを操作するフローが動かなくなるわけですが、セレクターを変数化することで違いを吸収することができます。
例えばWindowsに標準で搭載される「電卓」アプリの「7」ボタンの場合、Windows 10上のバージョン 10.2103.8.0 では下記セレクターになりますが、
1 | > window[Class="Windows.UI.Core.CoreWindow"][Name="電卓"] > group[Class="LandmarkTarget"] > group[Class="NamedContainerAutomationPeer"][Id="NumberPad"] > button[Class="Button"][Id="num7Button"] |
Windows 11上のバージョン 11.2201.4.0 では下記になります。
1 | > window[Class="Windows.UI.Core.CoreWindow"][Name="電卓"] > custom[Id="NavView"] > group[Class="LandmarkTarget"] > group[Class="NamedContainerAutomationPeer"][Id="NumberPad"] > button[Class="Button"][Id="num7Button"] |
下記サンプルのように、フロー中でアプリのバージョンを取得し、セレクター用の変数(今回の場合は%Selector%)に条件分岐でバージョンに応じたセレクターを設定することで、実行環境のアプリのバージョンが異なる場合でも、問題無くフローを動かすことができるようになります。
/# ※電卓の7ボタンをクリックするサンプル | |
※セレクターを変数化することでアプリのバージョンによる違いに対応#/ | |
Scripting.RunPowershellScript Script: $'''Write-Output (Get-AppxPackage -Name \"Microsoft.WindowsCalculator\" | select -ExpandProperty Version).Split(\".\")[0]''' ScriptOutput=> PowershellOutput ScriptError=> ScriptError | |
Text.ToNumber Text: PowershellOutput.Trimmed Number=> AppVersion | |
IF AppVersion >= 11 THEN | |
SET Selector TO $'''> window[Class=\"Windows.UI.Core.CoreWindow\"][Name=\"電卓\"] > custom[Id=\"NavView\"] > group[Class=\"LandmarkTarget\"] > group[Class=\"NamedContainerAutomationPeer\"][Id=\"NumberPad\"] > button[Class=\"Button\"][Id=\"num7Button\"]''' | |
ELSE | |
SET Selector TO $'''> window[Class=\"Windows.UI.Core.CoreWindow\"][Name=\"電卓\"] > group[Class=\"LandmarkTarget\"] > group[Class=\"NamedContainerAutomationPeer\"][Id=\"NumberPad\"] > button[Class=\"Button\"][Id=\"num7Button\"]''' | |
END | |
System.RunApplication.RunApplication ApplicationPath: $'''calc''' WindowStyle: System.ProcessWindowStyle.Normal ProcessId=> AppProcessId | |
UIAutomation.PressButton Button: appmask['Calc']['NumButton'] | |
UIAutomation.PressButton Button: appmask['Calc']['NumButton'] | |
UIAutomation.PressButton Button: appmask['Calc']['NumButton'] | |
# [ControlRepository][PowerAutomateDesktop] | |
{ | |
"ControlRepositorySymbols": [ | |
{ | |
"Name": "appmask", | |
"ImportMetadata": { | |
"DisplayName": "Computer", | |
"ConnectionString": "", | |
"Type": "Local" | |
}, | |
"Repository": "{\"Screens\": [{\"Controls\": [{\"AutomationProtocol\":\"uia3\", \"ScreenShot\":null, \"ElementTypeName\":\"Button\", \"InstanceId\":null, \"Name\":\"NumButton\", \"SelectorCount\":1, \"Selectors\": [{\"CustomSelector\": \"%Selector%\", \"Elements\": [], \"Ignore\":false, \"IsCustom\":true, \"IsWindowsInstance\":false, \"Order\":0}], \"Tag\":null}], \"ScreenShot\":null, \"ElementTypeName\":\"Window\", \"InstanceId\":null, \"Name\":\"Calc\", \"SelectorCount\":1, \"Selectors\": [{\"CustomSelector\": \":desktop > window\", \"Elements\": [], \"Ignore\":false, \"IsCustom\":true, \"IsWindowsInstance\":false, \"Order\":0}], \"Tag\":null}], \"Version\":1}" | |
} | |
], | |
"ImageRepositorySymbol": { | |
"Name": "imgrepo", | |
"ImportMetadata": {}, | |
"Repository": "{\r\n \"Folders\": [],\r\n \"Images\": [],\r\n \"Version\": 1\r\n}" | |
} | |
} |
電卓 バージョン 10.2103.8.0 の場合(Windows 10)
電卓 バージョン 11.2201.4.0 の場合(Windows 11)
セレクターの編集や条件分岐等、多少の手間は掛かりますが、異なる実行環境で同じフローを動かす際に、バージョンごとにフローを作成する必要が無くなるのはメリットと言えるでしょう。
この記事へのコメントはありません。