Forum Discussion
Thanks for information,
Now i changed my keyword operation using wait property and if then operation, since after selecting state there will be time taken to get county in list. so i have used wait property.
But Error showing that County List item not found, Attached screenshot for your reference.
Your wait property is simply waiting for the component to exist which will return almost immediately. That's what the idStr property basically does. What you should do is change that WaitProperty to check the property of something like "wItemCount" or equivalent property and have it wait until that has the total value of all counties.
On another style note, you have the IfThen logic in place but there is nothing that is being executed on the condition. Note that your next step, clicking on the item, is not indented under the if-then, therefore it will still always be executed even if the if-then fails.