セレクタ設定後にアンカーアイコンがずれるのはUiPathのバグ?

UiPath Studio 2023.6.1 Community Editionを利用中の初心者です。

UiPath DemoApp

のサプライヤー名を変数に入れて動的セレクタで、サプライヤー名をクリックした後、右に表示されるペンシルマークをクリックするアクティビティのセレクタを設定したところ、
本来はアンカーアイコンとターゲットアイコンは横に並んでいましたが、アンカーアイコンが少し下にずれていることに気づきました。(他の事例ではターゲットアイコンがずれる場合もありました。)
個人的経験からは、これは、UiPathのバグで、アンカーアイコンは正しく設定されているという認識ですが、正しいでしょうか?

@gorby

Use strict selector instead of fuzzy and uncheck the image selector and give the accurate selector

Hi @gorby

=> Extract the whole data as datatable by using Extract datatable activity.
=> Use for each row in datatable activity to iterate the extracted datatable.
=> Inside for each row in datatable activity insert the If condition to check the row of column equals to your condition like
→ Currentrow(“Columnname”).equals(“Human Resources”)
=> Insert the assign activity in then block and create a variable and store the row count.
=> In then block insert the click activity and indicate the pencil mark. When indicating check the strict selector and uncheck the fuzzy and image.
=> Open the click properties, open the strict selectors and take one specific attribute then pass the created variable.

Then it will click on the same pencil mark.

Hope it helps!!