Using macaca for mobile hybrid automation testing (Part 3)

Using macaca for mobile hybrid automation testing (Part 3)

macaca provides a command to start the webdriver server separately. Then we use REPL as the client to send simulated operation commands to the server.

First start the server:

  1. macaca server --verbose  

After starting the server, first send a command to the server to let it wake up the simulator:

  1. >> var wd = require( 'webdriver-client' )({
  2. platformVersion: '9.3' ,
  3. deviceName: 'iPhone 5s' ,
  4. platformName: 'iOS' ,
  5. app: YOUR-APP-PATH
  6. });
  7.          
  8. >> var driver = wd.initPromiseChain();
  9.      
  10. >> driver.initDriver();
  11. //At this time, you can see that the server has started the IOS simulator.
  12.      
  13. //The next step is to write a script to operate the simulator.
  14. >> driver.waitForElementByXPath( '//XCUIElementTypeApplication[1]/XCUIElementTypeWindow[1]/XCUIElementTypeOther[2]/XCUIElementTypeButton[1]' ).click();
  15.      
  16. //See that native has completed an operation
  17.      
  18. >> driver.waitForElementByXPath( '//XCUIElementTypeApplication[1]/XCUIElementTypeWindow[1]/XCUIElementTypeOther[1]/XCUIElementTypeOther[1]/XCUIElementTypeOther[1]/XCUIElementTypeOther[1]/XCUIElementTypeOther[1]/XCUIElementTypeOther[1]/XCUIElementTypeOther[1]/XCUIElementTypeTextField[1]' ).sendKeys(123456789)
  19. //See that native has completed an input operation
  20.      
  21. //...Next, everyone can write their own test scripts according to their own process

↑The picture is the log of http communication between client and server.

The convenience of using REPL to write test cases is that the entire test process will not pause the entire server or simulator because of problems with the test cases you wrote. Therefore, you can write the test cases in REPL first, write the files after the results are correct, and then carry out the entire case test process after all the test cases are completed.

<<:  Using macaca for mobile hybrid automation testing (Part 2)

>>:  Using macaca for mobile hybrid automation testing (Part 4)

Recommend

Teach you how to create explosive short videos and easily monetize them

01 Changes in the communication model: From manua...

5 details tips to optimize your APP description!

Many people in the industry think that APP descri...

Southwest Associated University Study Diary - Fan Deng Reading

Southwest Associated University Study Diary - Fan...

12 tips | Key points you need to know about creating advertising slogans

I won’t accept any gifts this year, and if I do, ...

From 0 to 1, how to obtain seed users?

Product operation from 0 to 1: A series of articl...

Momo's new growth point and monetization rules

In the past ten years, Momo has still not been ab...

Jack Ma: Fortunately, I started my business 20 years ago

[[152236]] The annual Alibaba Cloud Conference at...

Apple closes verification channel: iOS 15.5 cannot be downgraded after upgrade

Friends in China should be very familiar with the...

Data statistics interface-message analysis data interface

WeChat public platform launched an invitation-bas...

Yinchuan SEO Training: How to increase the speed of website index update?

Building a website and adding new pages can bring...

Weibo Fans Advertising and Charging Standards!

1. Introduction to Fantong What is Fantong? To pu...

Product Operation: Is your product suitable for fission?

Regarding fission, there have been several questi...