{"id":22173668,"url":"https://github.com/stefruseva88/appium-gestures","last_synced_at":"2026-02-13T13:01:30.456Z","repository":{"id":256606839,"uuid":"855907973","full_name":"StefRuseva88/appium-gestures","owner":"StefRuseva88","description":"Testing Interactions performed on touch-enabled devices.","archived":false,"fork":false,"pushed_at":"2024-11-28T17:24:56.000Z","size":356,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-08T15:57:44.082Z","etag":null,"topics":["appium-android","automation","mobile-testing"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StefRuseva88.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-11T16:47:34.000Z","updated_at":"2025-02-20T14:04:43.000Z","dependencies_parsed_at":"2024-11-28T18:31:17.486Z","dependency_job_id":"d9f49e24-3398-4def-a11f-8b12cd50e060","html_url":"https://github.com/StefRuseva88/appium-gestures","commit_stats":null,"previous_names":["stefruseva88/appium-mobile-gestures","stefruseva88/appium-gestures-tests","stefruseva88/appium-gestures"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/StefRuseva88/appium-gestures","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fappium-gestures","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fappium-gestures/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fappium-gestures/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fappium-gestures/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StefRuseva88","download_url":"https://codeload.github.com/StefRuseva88/appium-gestures/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StefRuseva88%2Fappium-gestures/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29407018,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appium-android","automation","mobile-testing"],"created_at":"2024-12-02T07:34:38.070Z","updated_at":"2026-02-13T13:01:30.439Z","avatar_url":"https://github.com/StefRuseva88.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mobile Gestures Automation with Appium\n[![C#](https://img.shields.io/badge/Made%20with-C%23-239120.svg)](https://learn.microsoft.com/en-us/dotnet/csharp/)\n[![.NET](https://img.shields.io/badge/.NET-5C2D91.svg)](https://dotnet.microsoft.com/)\n[![Android Studio](https://img.shields.io/badge/Built%20with-Android%20Studio-3DDC84.svg)](https://developer.android.com/studio)\n[![Appium](https://img.shields.io/badge/tested%20with-Appium-41BDF5.svg)](https://appium.io/)\n\n### This is a test project for Front-End Test Automation July 2024 Course @ SoftUni\n---\n## Overview\nThis repository provides a set of tests focused on automating common mobile gestures using **Appium** for mobile app testing, that includes gestures like taps, swipes, scrolls, drag-and-drop, and zoom using the **ApiDemos** app.\n\n### Table of Contents:\n- [Mobile Gestures Overview](#mobile-gestures-overview)\n- [Scrolling](#scrolling)\n- [Swiping](#swiping)\n- [Drag and Drop](#drag-and-drop)\n- [Sliding Seek Bar](#sliding-seek-bar)\n- [Zoom In and Out](#zoom-in-and-out)\n- [Running the Tests](#running-the-tests)\n\n### Prerequisites:\n- Install Appium Server.\n- Install Appium Inspector.\n- **Apk** file.\n- Set up a virtual or real Android device for testing.\n  \n## Mobile Gestures Overview\n\nMobile gestures simulate user interactions on touch devices like smartphones and tablets. These interactions include:\n- **Tap**: Quick touch, similar to a mouse click.\n- **Long Press**: Touch and hold an element.\n- **Swipe**: Move your finger across the screen to scroll or switch views.\n- **Scroll**: Navigate content that extends beyond the screen's view.\n- **Drag and Drop**: Move an object by dragging and releasing it.\n- **Zoom In/Out**: Use two fingers to change zoom levels.\n\n## Scrolling\n\n### Test Objective:\n- Automate scrolling actions using **Appium Inspector**.\n- Write the **ScrollToText** method to scroll until the text **\"Lists\"** is found.\n- Click on **Lists** and verify that **\" Single choice list\"** is displayed.\n\n## Swiping\n\n### Test Objective:\n- Automate swipe gestures using **Appium Inspector**.\n- Use Selenium's Actions class to simulate swiping.\n- Click and hold on the first image, move by an offset, and release.\n- Verify that the third image is visible.\n\n## Drag and Drop\n\n### Test Objective:\n\n- Automate drag and drop gestures.\n- Use **By.Id** to find the draggable and drop target elements.\n- Use JavaScript actions to drag and drop the first red dot over the second one.\n- Verify that the **\"Dropped!\"** message is displayed.\n\n## Sliding Seek Bar\n\n### Test Objective:\n- Automate sliding actions for a seek bar.\n- Use Appium Inspector's **Coordinates Mode** to get the precise sliding coordinates.\n- Slide the seek bar to a specific value and assert the value is displayed.\n- Write **MoveSeekBarWithInspectorCoordinates** method to slide the bar from the start to the end coordinates.\n- Verify the displayed value matches the expected result.\n\n## Zoom In and Out\n\n### Test Objective:\n- Use Appium Inspector to create a zoom-in gesture and execute it.\n- Zoom out using similar steps.\n- Use the saved gesture to zoom in and out at specific coordinates on the **WebView**.\n\n## License\nThis project is licensed under the [MIT License](LICENSE). See the [LICENSE](LICENSE) file for details.\n\n## Contact\nFor any questions or suggestions, please open an issue in the repository.\n\n---\n### Happy Testing! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefruseva88%2Fappium-gestures","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstefruseva88%2Fappium-gestures","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstefruseva88%2Fappium-gestures/lists"}