Posts by Gabriel Henrique • 45 points
6 posts
-
0
votes0
answers117
viewsQ: Access another python file method
I have a very simple code that clicks on an image on the screen: from src.imagesearch.functions import clickwithwait class Home: def clickNEWS(self): NEWS = r"..\NEWS.png" clickwithwait(NEWS) This…
-
1
votes1
answer432
viewsQ: GUI automation with python
Next, I want to start a project to create a bot for a specific android game in python, for this, I use an emulator, Nox. My idea is to be able to work with the automation part of Gui (automatic…
-
0
votes1
answer815
viewsQ: How to handle a windows window in python?
Next, I have a very simple code that just opens an exe program import os caminho = os.startfile(r"C:\Program Files (x86)\Nox\bin\nox.exe") However, when running, the application window comes…
pythonasked Gabriel Henrique 45 -
0
votes1
answer157
viewsQ: Access all rows of a JAVAFX table
I have the following table: When clicking a button, I want a function to run on each line read: private void inserirResultadosUsuario() { //Necessário pegar o valor de cada linha e de cada coluna…
-
2
votes1
answer67
viewsQ: Access xml files from a directory c#
I have a function that receives an xml file as a parameter. public void lerXML(XmlDocument xmlDoc) { XmlNodeList xnCNPJ = xmlDoc.GetElementsByTagName("emit"); XmlNodeList xnNFE =…
c#asked Gabriel Henrique 45 -
0
votes1
answer287
viewsQ: Change the content value of a javafx tableview line
Next, I’m using hsqldb to do a college job, and I need to change the content of a tableview view view In this case, in the columns Team name, you would need instead of code, the team name The seat…