Top "Ui-testing" questions

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

What are fixtures in programming?

I have heard of this term many times (in the context of programming) but couldn't find any explanation of what …

fixtures ui-testing uitest test-fixture
How to "wait to activity" using Appium, on begin and during test itself?

I'm starting an already installed app using appium. After my driver is initialized. How do I make it poll-wait till …

java android android-activity appium ui-testing
How to access launchEnvironment and launchArguments set in XCUIApplication, running UI tests in XCode?

I've tried setting attributes in the XCUIApplication instance, in my UI Tests setUp() let app = XCUIApplication() app.launchEnvironment = ["testenv" : "testenvValue"] …

ios xcode swift ui-testing
Testing ViewPager with Espresso. How perfom action to a button of an Item?

I have a ViewPager whith items containing only a picture and a button. I can't successfully interact with the UI …

android android-viewpager android-espresso ui-testing
Testing if an element is visible with Xcode 7 UITest

I want to verify if an element is visible or not depending on its .hidden property but I don't find …

xcode swift ui-testing xcode-ui-testing
Xcode UI Test example

I have just recently learned about Unit Testing in Xcode. Now I am trying out Xcode 7 and I see there …

ios xcode ui-testing xcode-ui-testing
Click on not fully visible imageButton with Espresso

I have a custom ImageButton that is not fully visible, by design, so when I perform a click action I …

android testing android-espresso ui-testing
Espresso: How to do custom swipe e.g. swipeTop or swipeBottom

So far we can do: swipeLeft swipeRight swipeUp swipeDown How can we swipeTop(all the way to the Top) or …

android android-espresso ui-testing
Unable to get Robotium to work in Android Studio

I'm struggling to get Robotium to work on the gradle-based Android Studio and I can't find the way to do …

android gradle robotium android-testing ui-testing
Android Espresso error on button click

I'm trying to write some UI tests for an Android APP with the espresso framework. For now I'm just checking …

android android-espresso ui-testing