|
|
|
|
LEADER |
00000cam a2200000Ma 4500 |
001 |
EBOOKCENTRAL_on1000395419 |
003 |
OCoLC |
005 |
20240329122006.0 |
006 |
m o d |
007 |
cr |n||||||||| |
008 |
170811s2017 xx o 000 0 eng d |
040 |
|
|
|a IDEBK
|b eng
|e pn
|c IDEBK
|d YDX
|d OCLCQ
|d EBLCP
|d COO
|d MERUC
|d IDB
|d CHVBK
|d OCLCO
|d OCLCQ
|d UOK
|d OCLCF
|d WYU
|d OCLCQ
|d LVT
|d OCLCQ
|d K6U
|d OCLCQ
|d OCLCO
|d OCLCL
|
019 |
|
|
|a 993548715
|
020 |
|
|
|a 1787288188
|q (ebk)
|
020 |
|
|
|a 9781787288188
|
020 |
|
|
|z 1787280160
|
020 |
|
|
|z 9781787280168
|
029 |
1 |
|
|a AU@
|b 000067111162
|
029 |
1 |
|
|a CHNEW
|b 000973828
|
029 |
1 |
|
|a CHVBK
|b 503269905
|
035 |
|
|
|a (OCoLC)1000395419
|z (OCoLC)993548715
|
037 |
|
|
|a 1025416
|b MIL
|
050 |
|
4 |
|a T55.4-60.8
|
082 |
0 |
4 |
|a 005.14
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Verma, Nishant.
|
245 |
1 |
0 |
|a Mobile Test Automation with Appium.
|
260 |
|
|
|b Packt Publishing,
|c 2017.
|
300 |
|
|
|a 1 online resource
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
588 |
0 |
|
|a Print version record.
|
520 |
8 |
|
|a Automate your mobile app testingAbout This Book* How to automate testing with Appium* Apply techniques for creating comprehensive tests* How to test on physical devices or emulatorsWho This Book Is ForAre you a mobile developer or a software tester who wishes to use Appium for your test automation? If so, then this is the right book for you .You must have basic Java programming knowledge. You don't need to have prior knowledge of Appium. What You Will Learn* Discover Appium and how to set up an automation framework for mobile testing* Understand desired capabilities and learn to find element locators* Learn to automate gestures and synchronize tests using Appium* Take an incremental approach to implement page object pattern* Learn to run Appium tests on emulators or physical devices* Set up Jenkins to run mobile automation tests by easy to learn steps* Discover tips and tricks to record video of test execution, inter app automation concepts* Learn to run Appium tests in parallel on multiple devices simultaneouslyIn DetailAppium is an open source test automation framework for mobile applications. It allows you to test all three types of mobile applications: native, hybrid, and mobile web. It allows you to run the automated tests on actual devices, emulators, and simulators. Today, when every mobile app is made on at least two platforms, iOS and Android, you need a tool that allows you to test across platforms. Having two different frameworks for the same app increases the cost of the product and time to maintain it as well. Appium helps save this cost. With mobile app growth exploding, mobile app automation is mainstream now. In this book, author Nishant Verma provides you with a firm grounding in the concepts of Appium while diving into how to set up appium & Cucumber-jvm test automation framework, implement page object design pattern, automate gestures, test execution on emulators and physical devices, and implement continuous integration with Jenkins. The mobile app we have referenced in this book is Quikr because of its relatively lower learning curve to understand the application. It's a local classifieds shopping app. Style and approachThis book takes a practical, step-by-step approach to testing and automating individual apps such as native, hybrid, and mobile web apps using different examples.
|
505 |
0 |
|
|a Cover -- Copyright -- Credits -- About the Author -- About the Reviewers -- www.PacktPub.com -- Customer Feedback -- Table of Contents -- Preface -- Chapter 1: Introduction to Appium -- Native app -- Mobile Web app -- Hybrid app -- Appium architecture -- XCUITest -- UiAutomator 2 -- Pros of using Appium -- Summary -- Chapter 2: Setting Up the Machine -- Machine setup for macOS -- Installing Java -- Installing Android SDK (using the Android command-line tool) -- Installing Android SDK (using Homebrew) (Optional) -- Creating Android Virtual Device (Optional) -- Genymotion emulator -- Debug help -- Installing Appium -- Installing Appium server (From Source) (Optional) -- Selecting IDE -- App under test -- Machine setup for Windows -- Installing Java -- Installing Android SDK (using Android command-line tool) -- Installing Node JS -- Installing Appium -- Installing Appium server (via npm) -- Installing Genymotion -- Selecting IDE -- Appium GUI app -- Summary -- Chapter 3: Writing Your First Appium Test -- Creating an Appium Java project (using gradle) -- Introduction to Cucumber -- Writing our first Appium test -- Running the feature file -- Refactoring -- Implementing the remaining steps -- Running the scenario -- Automating a mobile web app using Appium -- Implementing the remaining steps -- Automating the iOS app using Appium -- Build the app -- Deploying the app on the iOS Simulator -- Via xcrun command -- Using Appium -- Generating Boilerplate code for iOS -- Summary -- Chapter 4: Understanding Desired Capabilities -- Refactoring -1 -- Server argument -- Refactoring -2 -- Server capabilities -- Refactoring -3 -- Android-only capabilities -- Refactoring -4 -- iOS-only capabilities -- Summary -- Chapter 5: Understanding Appium Inspector to Find Locators -- Appium inspector -- Implementing the other steps -- UI Automator Viewer.
|
505 |
8 |
|
|a Debugging mobile web apps using Chrome Inspect -- Summary -- Chapter 6: How to Synchronize Tests -- AppiumDriver -- Implicit wait -- Explicit wait -- Fluent wait -- Summary -- Chapter 7: How to Automate Gestures -- Gestures -- TouchAction -- MultiTouch -- Scroll -- Swipe -- Orientation -- Summary -- Chapter 8: Design Patterns in Test Automation -- Refactor -1 -- Page Object pattern -- Refactor-2 -- Assertions -- Implementing assertions in Page Object -- Implementing assertion in test script -- Avoiding dependencies between tests -- Introducing set up and tear down -- Summary -- Chapter 9: How to Run Appium Test on Devices and Emulators -- Emulator -- Running test on the Genymotion emulator -- Devices -- Running a test on actual Android devices -- Running a test on actual iOS devices -- Summary -- Chapter 10: Continuous Integration with Jenkins -- Refactoring -1 -- Setting up Jenkins -- Moving a project to Git -- Adding Jenkins plugin -- Setting up the Jenkins task -- Viewing reports in Jenkins -- Summary -- Chapter 11: Appium Tips and Tricks -- Switching between views -- web and native -- Taking screenshots -- Recording video execution -- Interacting with another app -- Running the test in parallel -- Network conditioning -- Summary -- Chapter 12: Appium Desktop App -- Installing the new Appium app -- Starting a simple server -- Start New Session -- Attach to an existing session -- Desired Capabilities -- Appium Inspector -- Starting the server with advanced options -- Appium Endpoints -- Summary -- Appendix -- Introduction to Cucumber -- How does Cucumber work? -- Feature -- Scenario -- Background -- Scenario Outline -- Hooks in Cucumber -- Running Cucumber -- CLI Runner -- JUnit Runner -- Third-Party Runner (Via IntelliJ) -- Finding an app's package name and launch activity -- Using the ManifestViewer app -- Using the Appium GUI app.
|
505 |
8 |
|
|a Installing Google Play services in the Genymotion emulator -- Summary -- Index.
|
590 |
|
|
|a ProQuest Ebook Central
|b Ebook Central Academic Complete
|
650 |
|
0 |
|a Application software
|x Testing.
|
650 |
|
0 |
|a Mobile apps
|x Testing.
|
650 |
|
7 |
|a Application software
|x Testing
|2 fast
|
758 |
|
|
|i has work:
|a Mobile Test Automation with Appium (Text)
|1 https://id.oclc.org/worldcat/entity/E39PCXWtRG63wvP3GTwFTGrdHC
|4 https://id.oclc.org/worldcat/ontology/hasWork
|
776 |
0 |
8 |
|i Print version:
|a Verma, Nishant.
|t Mobile Test Automation with Appium.
|d Packt Publishing, 2017
|z 1787280160
|z 9781787280168
|w (OCoLC)993117314
|
856 |
4 |
0 |
|u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=4898687
|z Texto completo
|
938 |
|
|
|a EBL - Ebook Library
|b EBLB
|n EBL4898687
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n cis38476311
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 14671845
|
994 |
|
|
|a 92
|b IZTAP
|