Select item 액티비티 오류

select item 액티비티를 통하여 날짜를 선택하던 중 다음과 같은 오류가 나타났습니다.

Select Item ‘21’: 항목을 선택할 수 없습니다. 기존 항목 중에서 찾을 수 없습니다.
팁: 일부 콤보 상자는 해당 드롭다운이 확장되기 전까지 항목을 로드하는 데 시간이 걸립니다. 항목을 선택하기 전에 컨트롤에서 클릭을 시뮬레이션해 봅니다.

선택할 항목에 분명 입력할 변수가 있음에도 위와같은 오류가 출력이 되는데 이를 해결할 팁을 알려주셨으면 합니다.

Hi @seonghyeon_pak

1.Use the click activity instead of select item as some dropdowns taking time to load.
2.Use the click activity and click on the dropdown and give some delay by using the delay activity and what ever the data required to click please store that in a variable and pass the same into the another click activity which should be placed after the delay activity.

Regards

1 Like

@seonghyeon_pak

Hi

If you are passing select item as a variable please check the format of the variable it matches correctly or not

Use delays or timeout’s

1 Like

Hi @seonghyeon_pak

Use the click activity to drop the dropdown and use extract datatable activity to extract the data of dropdown. After that use for each row in datatable to iterate the extracted datatable. Take a If condition inside the for each. Currentrow(“Column name”)=“21”. Then store the Currentrow(“Column name”) in a variable.
Then give the click activity inside the If condition and open the selectors of click activity and pass the created variable to the attributes in the selectors.

Hope it helps!!

1 Like

@seonghyeon_pak

  1. For select item exact name of the item is to be provided even a small change even in casing or a space will not work
  2. Is the element you are using contains a select tag?/…select item works properly only on those
  3. Alternately you can use click activities to click on the required item and select

cheers

1 Like

@seonghyeon_pak

If you find the solution for your query please mark as solution to close the loop.

Regards

1 Like

Thanks for all answers.
The result of reviewing again to solve the problem
I accidentally set the variable setting outside the scope of the select item.
thanks for the help

1 Like

Thank you @seonghyeon_pak

Hope you find the solution for your query. Make mark it as solution then it will helpful for forum members.

Happy Automation!!

Hi @seonghyeon_pak ,
You can try select item by multiple select activity
Regards,

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.