How to count all RecyclerView items in UiAutomator for not different items
up vote
0
down vote
favorite
I have to swipe to the end of the list and to count the elements, but these elements are not all different. How can I count them?
uiautomator android-uiautomator
add a comment |
up vote
0
down vote
favorite
I have to swipe to the end of the list and to count the elements, but these elements are not all different. How can I count them?
uiautomator android-uiautomator
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have to swipe to the end of the list and to count the elements, but these elements are not all different. How can I count them?
uiautomator android-uiautomator
I have to swipe to the end of the list and to count the elements, but these elements are not all different. How can I count them?
uiautomator android-uiautomator
uiautomator android-uiautomator
asked Nov 19 at 21:09
Ani Daniel
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You can add those elements in a list and scroll down after adding them.
You can add all those list elements in HashSet which will ensure that no elements are counted twice.
You can swipe down the recycler view using UiDevice object.
I can give more detail and code about this once I get to know about your scenario in more detail.
The problem is that some elements are duplicate, so at the bottom of the list, I will definitely not have all the objects using HashSet. If I try to put them into an Array, after I scroll down, the last item from the list before scrolling will appear again in the new list after scrolling so it will be count again. One option which I have think about, is to get name & location for the last item in the list and after I swipe down, to check what's the index of that element, take the list size and subtract this index ... it's indeed a complex action
– Ani Daniel
Nov 29 at 16:55
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You can add those elements in a list and scroll down after adding them.
You can add all those list elements in HashSet which will ensure that no elements are counted twice.
You can swipe down the recycler view using UiDevice object.
I can give more detail and code about this once I get to know about your scenario in more detail.
The problem is that some elements are duplicate, so at the bottom of the list, I will definitely not have all the objects using HashSet. If I try to put them into an Array, after I scroll down, the last item from the list before scrolling will appear again in the new list after scrolling so it will be count again. One option which I have think about, is to get name & location for the last item in the list and after I swipe down, to check what's the index of that element, take the list size and subtract this index ... it's indeed a complex action
– Ani Daniel
Nov 29 at 16:55
add a comment |
up vote
0
down vote
You can add those elements in a list and scroll down after adding them.
You can add all those list elements in HashSet which will ensure that no elements are counted twice.
You can swipe down the recycler view using UiDevice object.
I can give more detail and code about this once I get to know about your scenario in more detail.
The problem is that some elements are duplicate, so at the bottom of the list, I will definitely not have all the objects using HashSet. If I try to put them into an Array, after I scroll down, the last item from the list before scrolling will appear again in the new list after scrolling so it will be count again. One option which I have think about, is to get name & location for the last item in the list and after I swipe down, to check what's the index of that element, take the list size and subtract this index ... it's indeed a complex action
– Ani Daniel
Nov 29 at 16:55
add a comment |
up vote
0
down vote
up vote
0
down vote
You can add those elements in a list and scroll down after adding them.
You can add all those list elements in HashSet which will ensure that no elements are counted twice.
You can swipe down the recycler view using UiDevice object.
I can give more detail and code about this once I get to know about your scenario in more detail.
You can add those elements in a list and scroll down after adding them.
You can add all those list elements in HashSet which will ensure that no elements are counted twice.
You can swipe down the recycler view using UiDevice object.
I can give more detail and code about this once I get to know about your scenario in more detail.
answered Nov 28 at 8:27
Sushant Somani
4171218
4171218
The problem is that some elements are duplicate, so at the bottom of the list, I will definitely not have all the objects using HashSet. If I try to put them into an Array, after I scroll down, the last item from the list before scrolling will appear again in the new list after scrolling so it will be count again. One option which I have think about, is to get name & location for the last item in the list and after I swipe down, to check what's the index of that element, take the list size and subtract this index ... it's indeed a complex action
– Ani Daniel
Nov 29 at 16:55
add a comment |
The problem is that some elements are duplicate, so at the bottom of the list, I will definitely not have all the objects using HashSet. If I try to put them into an Array, after I scroll down, the last item from the list before scrolling will appear again in the new list after scrolling so it will be count again. One option which I have think about, is to get name & location for the last item in the list and after I swipe down, to check what's the index of that element, take the list size and subtract this index ... it's indeed a complex action
– Ani Daniel
Nov 29 at 16:55
The problem is that some elements are duplicate, so at the bottom of the list, I will definitely not have all the objects using HashSet. If I try to put them into an Array, after I scroll down, the last item from the list before scrolling will appear again in the new list after scrolling so it will be count again. One option which I have think about, is to get name & location for the last item in the list and after I swipe down, to check what's the index of that element, take the list size and subtract this index ... it's indeed a complex action
– Ani Daniel
Nov 29 at 16:55
The problem is that some elements are duplicate, so at the bottom of the list, I will definitely not have all the objects using HashSet. If I try to put them into an Array, after I scroll down, the last item from the list before scrolling will appear again in the new list after scrolling so it will be count again. One option which I have think about, is to get name & location for the last item in the list and after I swipe down, to check what's the index of that element, take the list size and subtract this index ... it's indeed a complex action
– Ani Daniel
Nov 29 at 16:55
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382663%2fhow-to-count-all-recyclerview-items-in-uiautomator-for-not-different-items%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown