Posts by Alessandro Lim • 21 points
2 posts
-
1
votes1
answer2247
viewsA: How to make a robot take data from a table in an HTML website
Well whenever I needed to do something of the kind with tables, I used a full scan using the xpath below (I already put the table id you passed on the link): int lineNumber = 1; int columnIndex = 1;…
-
1
votes3
answers5014
viewsA: Testing a void method with mockito
Since the method is void, it is not necessary to set up a return, so you just need to ensure that this method should be called, if it should not be called, or how often it should be called. This is…