Questions tagged [ui-testing]

User interface testing is the process of testing a product's graphical user interface to ensure it meets its specifications.

User interface testing is the process of testing a product's graphical user interface to ensure it meets its specifications. Test cases attempt to cover all the functionality of the system and fully exercise the GUI itself. Wikipedia

829 questions
0
votes
3 answers

UI automation of an iphone app

I need to automate the UI testing of an iPhone application, i.e. if in my iPhone application I have two text fields corresponding to username and password the tests should automatically fill in the values and press the submit button, but as I am a…
AnkitSablok
  • 3,021
  • 7
  • 35
  • 52
0
votes
2 answers

Dynamically change connection string for UI tests

I'm using WebAii library for UI testing - I want to test whether my component displays the same records as there are in database therefore I need to switch my application's connection string to point to the test database just for the time of running…
0
votes
1 answer

creating a performance tool for web based GUI

I want to create an automated performance metric gathering tool, to get various metrics for page load times for a flash based web application. I am doing the web automation using a batch script, and then I want to collect the various metrics using…
user1371011
  • 193
  • 3
  • 12
0
votes
3 answers

Test run failed, Robotium

I have a test for my Android application, and it's running without problems. But when I added clickOnView for one button it failed after clicking, Like: Test run failed: Instrumentation run failed due to 'java.lang.OutOfMemoryError' bitmap size…
Ann
  • 475
  • 1
  • 5
  • 14
-1
votes
1 answer

Espresso test is not finishing and it keeps on finding element when there is an issue in the application

I have the espresso test. When there is any issue in the app the test is not finishing and it keeps on staying on the same screen. Is there anyway we can give timeout for the espresso test. I cant find solution for the global timeout. Junit Android…
-1
votes
1 answer

Draw shapes on apple maps using XCUITest automation in Swift

Suppose if I have Four coordinates let app = XCUIApplication() let mapView = app.otherElements.matching(identifier: "map_view").element let co1 = mapView.coordinate(withNormalizedOffset: CGVector(dx: 0.1, dy:…
-1
votes
1 answer

How wait until toast is finish? Start second test only after toast was hide of prev test

Here my Espresso's tests: @RunWith(AndroidJUnit4::class) class AddTraderActivityNetworkTest { private val context = InstrumentationRegistry.getInstrumentation().getContext() private lateinit var mockServer: MockWebServer @Rule …
Alex
  • 1,857
  • 4
  • 17
  • 34
-1
votes
2 answers

How to remove first line of element

Im having a small issue when writing my tests. Currently an element I am trying to use is returning me Points:- when I print it on the console. In the html its in the format Points: and on the next line -. How can I remove the "Points: " from this…
FearghalQA
  • 255
  • 1
  • 2
  • 11
-1
votes
1 answer

How to test a distributed P2P game if it can handle 100 connections?

For a big project at school we have made a P2P variant of the famous beergame. The GUI is built in JavaFX. I have to do research on how to test a quality attribute scenario, which is the following: 100 players can connect to the game and play…
user2520459
  • 29
  • 1
  • 1
  • 8
-1
votes
2 answers

How to let espresso tests fail for a specific condition

For my espresso tests, I am searching for a way to let all tests fail before they run, if a specific condition is not met. How can I achieve this?
-1
votes
2 answers

Android Espresso intending not working on android version > 5

I have an Espresso UI Test that uses intending to stub launching a new activity when a button is clicked. The below code works perfectly fine on devices with Android version 5.1 and lower but on any device with an android version above that…
Kai
  • 1,709
  • 1
  • 23
  • 36
-1
votes
1 answer

Using UI tests in Continuous Testing

I am planning to write some UI tests for a legacy Java EE application. Can anyone with similar experience recommend a tool for this? (I am thinking of going ahead with Selenium). Also do you recommend putting these tests as a part of the CD pipeline…
user2666282
  • 381
  • 1
  • 2
  • 15
-1
votes
1 answer

Best testing tool for browser certification testing

please help me to get rid of this. I have a web application and i need to develop automated scripts to cross verify that all the required components/elements are rendering fine on the web pages across different browsers. i simply shouuld say that…
-2
votes
2 answers

remove brackets from returned string

I currently call a json within my selenium tests and they are returned in the form of [4534535], id like to remove the brackets and leave just 4534535 but the code im currently using doesnt seem to do that and i cant find a solution. Currently im…
FearghalQA
  • 255
  • 1
  • 2
  • 11
-2
votes
1 answer

Is it possilble to finish test only after Toast was hide?

Here my Espresso's test: @RunWith(AndroidJUnit4::class) class AddTraderActivityNetworkTest { @Rule @JvmField var addTraderIntentTestRule: IntentsTestRule = IntentsTestRule(AddTraderActivity::class.java) @Before …
Alex
  • 1,857
  • 4
  • 17
  • 34
1 2 3
55
56