1,832 questions
-3
votes
1
answer
55
views
Testing Ui jetpack compose that has hilt dagger [closed]
I want to test app that have dagger hilt in their app arciecture i need a small app code demo plaese help me
i want an code sample end to end with viemodel and fake repository .
i want a simple app ...
1
vote
1
answer
383
views
How can you test images on a page with playwright .NET without extra dependencies?
Say for example I need to test this page's images, what are my options in playwright for .NET? Is it possible to visually compare the page or image? Can you check if the src field in the is correct?
...
0
votes
1
answer
49
views
AutomationElement blocks when application show messagebox
I have an event in my WPF application that looks like this:
private void ShiftsDataGrid_OnBeginningEdit(object? sender, DataGridBeginningEditEventArgs e)
{
if (e.Column == ShiftIdColumn && ...
0
votes
0
answers
118
views
TestComplete C#script runtime error. Object doesn't support this property or method
During script execution in TestComplete, I encounter an error when displaying the desktop application window. TestComplete throws an error: "testcomplete c#script runtime error. object doesn't ...
0
votes
0
answers
510
views
Playwright Media Keys using Keyboard
I'm trying to press the Media keys on the keyboard using Playwright / Typescript. For example, when playing audio using a browser, users are able to press 'Play/Pause, Forward, Backward' using the ...
0
votes
0
answers
42
views
count how many elements are exist within the same CLASS_NAME in the page
I'm currently writing a UI test for creating a new message in my app, I ran into an issue with asserting that the message is actually created.
The assertion I want to make contain two stages, First, ...
3
votes
0
answers
196
views
How to avoid API requests shown when call npx cypress open? [duplicate]
I'm writing tests using Cypress for the UI of an application that has polling - it makes API requests every 2 seconds.
I would like to run the tests in the --headed mode (by npx cypress open) and to ...
0
votes
0
answers
98
views
How can i run Ui tests without viewing the screen in Windows?
I have an app service in Azure that I want to run some UI tests on . The issue is that I need to always have the VM screen visible for the tests to run.
Is there a way I can run them in command line ...
0
votes
1
answer
124
views
Could not load file or assembly 'WebDriver, Version=2.53.1.0 when using coded UI Testing
Since today I get the following new Error message:
System.IO.FileLoadException: Could not load file or assembly 'WebDriver, Version=2.53.1.0, Culture=neutral, PublicKeyToken=1c2bd1631853048f' or one ...
-2
votes
1
answer
170
views
Ways to automate Outlook Application
After every patching we test basic Outlook functionality like able to send email etc, wanted to check if there is any way to automate the Outlook UI.
8
votes
2
answers
7k
views
Not able to use MockK in Android Espresso UI Testing
I am getting a error when trying to use MockK in UI test which was perfectly working in Unittest cases
MockK could not self-attach a jvmti agent to the current VM
Full error report
Caused by: io....
0
votes
1
answer
339
views
if else statement not working in testcafe
async selectLocalAdmin(){
if(this.localAdmin.visible){
await t.click(this.localAdmin);
}
else{
console.log('not visible');
}
}
I was trying to add some if else ...
1
vote
1
answer
495
views
Espresso test on Android getting wrong view hierarchy on logs while working properly on device
I wrote simple example test for Activity witch tests that when i click button - new fragment opens (LoginFragment). There is test class code:
@RunWith(AndroidJUnit4::class)
@LargeTest
class ...
0
votes
1
answer
24
views
Application controls are getting identified differently by CodedUi Test Builder
I am not able to Identify correct control of an application by Coded Ui Test Builder
Seee this Image
1
vote
1
answer
3k
views
How to click input type=radio in webdriverIO
I'm trying to write some tests using WDIO but stumble on the following issue. I don't really understand how to click() input type=radio. Here how it looks in DOM
So I need to click the right one. I ...