Questions tagged [automation-testing]

159 questions
4
votes
1 answer

How can we generate HTML Report of Integration Test in Flutter Automation Testing

How can we generate HTML Report of Integration Test in Flutter Automation Testing. Being an Automation Tester, I've been working on an existing Flutter Automation Project which is running as Integration Test. Like Selenium I also want to generate…
3
votes
0 answers

how to set JAVA_HOME enviroment on linux for Appium Doctor using

i currently for using appium, i need to install appium doctor for automation testing. When i run appium doctor in my terminal there was error in line of terminal [] export ANDROID_HOME= $HOME/Android/Sdk export PATH=$PATH:$ANDROID_HOME/tools export…
3
votes
1 answer

How can we generate HTML reports of unit test or integration test runs in Rust?

How can we generate an HTML report of unit test or integration test after running cargo test in the Rust programming language? As an Automation Tester, I've been working on an existing Rust Automation Testing Project which is running as Integration…
The Sun
  • 503
  • 1
  • 3
  • 13
3
votes
0 answers

Appium inspector does not split elements (React-Native app)

React-Native app with + react-navigation-v5 After adding a screen into nested stack navigator can see picture like bellow on screenshots. [image] source code [image] appium inspector Appium cannot split text elements inside view even with…
2
votes
1 answer

How to assert Url of new tab with WDIO

My test scenario is that: You go to url1 you click button you open another tab with url2 How to I assert the url2? I use assert(browser).toHaveUrlContaining('') But it assert the url1, so my test was fail
2
votes
1 answer

junit.framework.AssertionFailedError: No tests found in org.example.AppTest

I started to learn about automation testing and I am trying to testing with Intellij using apache-maven 1.8 & selenium-server. I have also installed JDK11. and I try to exercise by testing web, so I created two classes which are homepage &…
2
votes
0 answers

Rest Assured - api testing against statistics

I'm using RestAssured with Java, I need to automate api test against statistic, meaning I need to call certain end point thousands of times and establish a baseline and then do actual test against that base line. For example if I hit one end point…
2
votes
0 answers

Can we reference tags in karate?

i want to call the tags by referencing them to variables and then call variables to run the tests, is it possible in Karate? for example : defining a particular tag to a variable and then calling that variable across feature files so that scenarios…
2
votes
0 answers

Samsung Tizen Smart TV command Smart Development Bridge < $sdb shell > command returns status is 'closed'. how to enable it.?

My Real Samsung Smart Tizen series 4 TV is running, my build is ready, I am trying to run the following command to run in debug: $ sdb -s 192.168.0.101:26101 shell 0 execute org.tizen.volume-setting It returns this : closed When I run $ sdb…
2
votes
0 answers

Width mismatch for certain elements in certain layouts

I was using the Galen framework for layout testing and here is the issue, I come across. Kindly provide me your inputs to proceed along Galen version: 2.4.4 Usage: Maven project with Java Verification method LayoutReport layout =…
2
votes
1 answer

How to get POST API response in Cypress?

I am working on a project to automate using Cypress. In this project, I need to create an order for a patient. When I click on the submit button it will call the following API https://ibis-dev.droicelabs.us/api/dispenser/orders/ using the POST…
Krupal Vaghasiya
  • 536
  • 7
  • 21
2
votes
1 answer

Why is my Java function in my Karate feature returning a String instead of an array?

I am new to software testing and working in a Karate environment. Currently I am working on a story where I have to test that the maximum number of database entries is working -- that when the max number of entries is reached (20), the program…
1
vote
0 answers

How to get scenario outline value in cucumber ruby?

I would like to get the value of scenario outline examples to have meaningful logs I already succeed to get scenario name for logs, but I don't have to get scenario outline examples values got error undefined method `scenario_outline' for…
RR31
  • 71
  • 1
  • 1
  • 4
1
vote
1 answer

How to simulate a key press for 5 seconds on the keyboard using TestCafe

I tried to send it to the browser console by pressing .pressKey("PageDown"), after tracking it, but nothing came of it. Who can tell what steps to take next, maybe there are examples? I was told that you can use the clientfunction, but I can’t…
1
vote
1 answer

Data driven in Karate with multiple columns along with karate.setup() is Possible?

Can I validate multiple values in the response when use path from each element in array while I am using @setup in Karate framework. In example I can pass as many as columns and validate them with response. Please refer the following snippet for…
PSP
  • 57
  • 4
1
2 3
10 11