Posts by lmart • 46 points
4 posts
-
1
votes1
answer2089
viewsA: Check if Widget exists with Selenium
You can treat the exceptions generated by Selenium if they are on a Try except. One way to resolve this is to insert a Try except inside your for and send only an error message, so your Cod. won’t…
-
1
votes1
answer262
viewsA: Validation of the data itself entered in the field (character limit)
Hello, Normally we use gettext() for most elements, but for "input" the text is kept in the page structure differently, it is under the attribute "value". Then you should use the "getattribute"…
-
0
votes2
answers2275
viewsA: Change Action Bar title with Tab Bar
Use this whenever an Activity is initialized. Actionbar actionbar = getActionbar(); //Ou Actionbar actionbar = getSupportActionBar(); actionbar.setTitle("Digite ou chame seu titulo aqui");…
-
1
votes2
answers604
viewsQ: Recyclerview, problem inserting an item
Talk guys, I’m new on android, I have a problem here, I’m trying to insert items in a Recyclerview, when I use the direct method on the button it is inserting statically good: public void…