we are trying to implement serenity to test mobile application using SeeTest automation tool. can anyone guide what will be best way. currently we are able to connect to the device with the help of wrappedSeeTestDriver.once the execution completes results are generated but screen shots are not captured. also operations like sendText("{ENTER}"); also not working. Any suggestions idea will be great help.
Related Questions in SERENITY-BDD
- Could not instantiate class org.openqa.selenium.edge.EdgeDriver in Serenity
- How to run Automation api testing with serenity-cucumber bdd using jar file
- Serenity Full Report shows bad ui
- Issue accessing env specific parameters from serenity.conf from a static context
- Serenity Bdd 4.1.0 : No BaseStepListener has been registered
- ElementNotInteractableException: element not interactable (When uploading the file by using the CloudFIleOperationUtil )
- Serenity BDD framework test case fails after Chrome Version update 121 ,Could not instantiate new WebDriver
- Surefire plugin crashed
- How to use both CfT (Chrome for Testing) and chromedriver lacal binaries with Serenity BDD configuration
- How to run serenity with cucumber without maven or gradle
- appium test on saucelabs using serenity framework
- Selenium methods which can be used to upload picture/file when sendkeys and javascript executor are not working
- Serenity Report is not generated Build Failed after successfully running test scenarios in Maven project
- Getting [ERROR] zip END header not found in Serenity BDD Maven project in IntelliJ IDE CE
- Compatibility serenity-jira-plugin with Jira
Related Questions in SEETEST
- How to interact with element not highlighted in the non instrumented mode
- How to handle a list of dynamic webelements on mobile app automation (SeeTest/JavaScript/BDD)
- Paste Text from Android Emulator Clipboard to PC
- Not able to add iPhone in Appium Studio
- How to use Assertion in SeeTest
- Where can I find jar files for com.experitest.client
- How to identify or create XPath for dynamically changing content in a screen (in mobile web)
- How to verify a random number generation and provide a calculation
- How to scroll up to a specific date in calendar in appium java
- "It is impossible to create a new session because 'createSession' which takes HttpClient, InputStream and long" while running test in experitest
- Swipe on mobile device (iPad Settings screen) always swipe on right half. How to perform Swipe in Left half
- What is the Recommended Approach to Automate IOS devices on Windows?
- maven test not running appium studio
- Cloud Test Environment For iOS Device
- Facebook WebDriverAgent: How to run it without Xcode
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
To achieve BDD with SeeTest, you can use SpecFlow with C#. Below are high level Steps:
sendText("{ENTER}");: The sendText({Enter}) (or also the 'BKSP') is basically try to use the enter from the android keyboard, and it is a possibility that this application or specific activity on the application developed different.
If you are using seeTestAutomation and open the application in the reflection and spotify to the right place when you testing the enter, try to press manual in the the computer's keyboard 'enter', is it working?
Also please try with adb command (run command in seeTest) "adb shell input keyevent 66" (66 is the keycode for enter) and if this won't work - it means that the enter command is not implemented this view of the application.