I am currently creating an application that records a person actions on a webpage and saves them to a JSON file. so far I have been able to do this but I am having problems when recording actions for list-boxes within the web-view. I am then using the stored actions within the JSON file to creation an automation test within robotium.
When I click on the List-box it loads up a spinner with all of the items within the list-box. However, when I try to make a change it does not record it because it is in the spinner not the web-view. Also when playing it back through robotium it cannot find the list-box and causes an error despite it having an identifying attribute.
My question is how can I record the actions that change the value of the listbox and will I need to create a spinner listener to do this. If you need any more information or any code let me know and I shall edit this question. thanks in advance