All Questions
66 questions
0
votes
0
answers
32
views
Pywinauto unable to find element
Am trying to to rotate ip automatically using IPVanish App and pywinauto library.Below is my code.
import os
import ctypes
import sys
from pywinauto.application import Application
from time import ...
0
votes
0
answers
15
views
I want to get text from span tag and name from input tag, both are children under parent div tag in robot framework
Need to get text from span and name attribute from input tag. I want to store it in a varible, use it in for loop traversing, need to save the text and name in dictionary.
I have tried
${...
0
votes
0
answers
30
views
How to get data from a dynamic custom table-like element of a legacy desktop application? (table not detected by pywinauto)
I want to get data from the table of a legacy Windows desktop application.
I tried pywinauto - the scroll bar, titles, checkboxes, tabs are detected but the table is not detected.
I found few tab ...
0
votes
0
answers
67
views
How to get the all text inside the pane using python library pywinauto
I am trying to automate filetest.exe using python pywinauto library but I am not able to get the text inside the pane (which is showing in image with yellow box).
Here is my code
from pywinauto import ...
1
vote
2
answers
388
views
How to read responses from request in robot selenium
Looking similar to cypress.intercept() in robot framework where we read api responses for get and post requests already happening for api testing from UI without additional calls. Not found any ...
0
votes
0
answers
85
views
Linkedin automation connection bot with people from search
I do have a side project which i found very challenging and at the same time very interesting.
So! Idea is very simple!
Using Selenium!
Log in to Linkedln!
Go to search link with your parameters - in ...
0
votes
1
answer
56
views
How to click element which is non-interactable using selenium-python
I've a portal which I need to automate. The problem arises when I'm trying to click on the Accept All button element of dialog box. But, I'm not able to locate it when trying to use inspect (F12).
...
0
votes
0
answers
40
views
is there a way in python to automate applications(.exe) for beginner like me?
I would like to automate application programs, from opening the file until automatically working on it. Currently i am learning python and i am using pyautogui & pywinauto, but seems i am having ...
-4
votes
1
answer
67
views
Tkinter is showing dual screen even and I don't know how the other one came
This is the source code:
class CalcGUI(tkinter.Tk):
FONT_MEDIUM = ('Calibre',10)
FONT_MEDIUM = ('Calibre',7)
def __init__(self): # As usual calling the init constructor
super().__init__() # ...
0
votes
1
answer
147
views
How to execute a pywinauto automation script through an Azure DevOps pipeline, as it requires an active GUI to access the elements?
I've developed an pywinauto automation script to automate an desktop application and pushed it to a repo in order to execute it through a pipeline in an agent machine, when I try to execute manually ...
1
vote
1
answer
497
views
pyautogui is not finding the image on my screen while using the `locateCenterOnScreen` command
So, I'm playing with pyautogui automation python library and trying to find the axis (x, y) of a picture on my screen.
Following the official documentation, we have the following command, which ...
0
votes
0
answers
354
views
How to integrate a Microsoft Power apps application with a script to export and update data automatically
I have a Microsoft power apps application that I built and one part of the weekly maintenance to keep this application updated with the correct information is to manually update some sort of data from ...
0
votes
0
answers
908
views
How to change the user-agent in playwright autotests
I can't run autotests using a headless browser, because my user agent = Headless Chrome. For this reason, I get to the page with the captcha=(. This is my current autotest code, please help me figure ...
1
vote
0
answers
152
views
Element not enabled
Using a script a modder made for a tool for modding a game.
verify_enabledpywinauto.base_wrapper.ElementNotEnabled
What does that mean?
Tried running the script instead of the auto script file that ...
0
votes
0
answers
144
views
How can I extract text from each item in listbox control in windows application using Win API?
I can`t see the text of ListBox items when I inspect them using any inspector, like inspect or Accessibility Insights For Windows.
These are the properties that appear when you use the Accessibility ...