コンボボックスで選択可能な、すべてのリスト要素を取得方法

[日本語で質問]
Windows10の[マウスのプロパティ]ウインドウで、[ポインター]タブにある項目[デザイン(S)]には、以下のようなリストから選択することができるようになっています。
・Windowsスタンダード(大きいフォント)(システム設定)
・Windowsスタンダード(特大のフォント)(システム設定)
・Windows黒(システム設定)

これら、すべてのリスト要素を取得して、順番に選択する操作は、どのように記述すればいいでしょうか?
Class[ComboBox]、AutomationId[113]、Name[デザイン(S)]の項目です。

[English]
In the [Mouse Properties] window of Windows 10, you can select the item [Design (S)] on the [Pointer] tab from the following list.
· Windows standard (large font) (system setting)
· Windows standard (oversized font) (system setting)
· Windows Black (system setting)
:
How do you describe the operation to acquire all these list elements and select them in order?
Class [ComboBox], AutomationId [113], Name [Design (S)].

If you post your query in English, you may get more response from all over the world

@skini76 Thank you for your advice.

たいていの場合、Get Full Textアクティビティを使うと、コンボボックスの中身は(改行で区切られた1つの文字列として)取得できます。
サンプルを添付しますので、確認してみてください。
(実際には、最後に「改行だけ」が入ることがあるので、Splitする前にTrimするほうが良いかもしれません)

Main.xaml (11.2 KB)

@Honoka ありがとうございます。「Attach Window」で操作対象のウインドウを決定し、その中で「Get Full Text」する訳ですね。解決しました。