Posts by F Navy • 153 points
5 posts
-
3
votes1
answer99
viewsQ: Grab a button on Splinter (python)
For most of the buttons I try to grab using Splinter, the commands that are on this site (https://splinter.readthedocs.io/en/latest/finding.html) is enough. But for this particular button, I can’t…
-
4
votes1
answer2570
viewsA: How to turn a . py into an . exe?
Your python is 3? py2exe does not work in python 3. It uses Cx_freeze - http://cx-freeze.sourceforge.net/
-
3
votes2
answers978
viewsQ: How to find the name of a button by source code?
I’m working with a library python calling for Splinter, that simulates a web browser. I’ve read about how to use it, and to click a button, just give a command that involves the name of the button.…
-
1
votes3
answers1598
viewsA: Countdown by using Tkinter
Got it! Thanks jbueno, I decided to put the get() inside the function. so it did not catch the blank entry (the space). But now the count does not continue, for example, if I put 60 in Entry, it…
-
3
votes3
answers1598
viewsQ: Countdown by using Tkinter
I’m trying to come up with a Tkinter show to count backwards. I can’t understand why I can’t take Entry and turn it into an integer. (As this is just a test, I did using Portuguese same) from…