All Questions
Tagged with automation ui-automation
560 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
28
views
Extracting text from clipboard fails when running Selenium web tests via Jenkins
I have an automated test which extracts the file contents, copy and paste inside my view. On local machine it works fine but only when I am running it via Jenkins on virtual machines from my DevOps, ...
0
votes
1
answer
81
views
AutoIT Context Menu
I'm having troubles with clicking inside a ContextMenu in AutoIT. The context Menu has only one parameter which is the class: Afx:00960000:4803:00010003:00000010:00000000.
The rest of the parameters ...
-3
votes
2
answers
39
views
How to migrate UiPath automations from Firefox to Chrome without redoing everything?
I’ve been given a project where I need to test web applications using UiPath. Until now, all the tests were running on Firefox, but now I have to migrate everything to Chrome.
The problem is that the ...
0
votes
0
answers
22
views
Google Suspicious activity on UI Automation
I'm using Browserstack App Automate to run UI Automation on my game. Browserstack provides a way, where we can provide the google account details in a config file, and it will automatically login to ...
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
${...
1
vote
0
answers
30
views
Automating a virtual desktop in Windows 11
for a possible project of mine with a client I plan to implement a system that makes use of a virtual desktop. The client wants me to automate a mobile quiz game that will be run on Bluestacks. It is ...
-1
votes
1
answer
40
views
How to interact with the elements of website made in Reactjs?
I am trying to focus on a div with role textbox on a website made in reactjs but nothing is working.
I have tried this:
async function focusOnElement(selector) {
let element = undefined;
while (!...
2
votes
0
answers
162
views
Appium inspector - Cannot connect to the Dart Observatory URL - Flutter
I'm trying to create a session in appium inspector for android app which developed in Flutter. this is the capabilities set:
{ "appium:automationName": "Flutter",
"...
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
1
answer
94
views
Sorting columns with POM in Playwright Typescript not working
I want to fetch column1, column2,ect.. values and sort the column accordingly. Below is the HTML structure. Im unable to locate and fetch the column values.
When Im running the below code, Im getting ...
1
vote
0
answers
59
views
CheckBox pywinauto how to click inside ListViewWrapper
I have a table object with one row in it. I want to click on the CheckBox inside this line, but all I could do was click on the line itself, but not on the CheckBox.
Code:
app = Application().connect(...
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 ...
0
votes
0
answers
17
views
Can we use Salesforce Code Builder cloud platform to automate Selenium JS UI tests
I am looking to automate Selenium JS UI tests using Salesforce Code Builder, just as we would do on VS Code on our local machine. It couldnt facilitate Chrome browser installation, rather than ...
0
votes
0
answers
30
views
How to automate Pseudo Scrollbar using Selenium Java, which is not present in DOM
I'm trying to automate a Scrollbar using Selenium, which is not present in DOM. I see the Styles related to the scrollbar. I'm unsure of how to automate it. Can anyone please let me know how to scroll ...