Downloads:
2,096
Downloads of v 1.2.1.20190416:
44
Last Update:
13 Apr 2023
Package Maintainer(s):
Software Author(s):
- NetEase Inc
Tags:
airtest-ide airtest ide poco pocoui poco-ui selenium automatisation test python- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Airtest IDE (Portable)
This is not the latest version of Airtest IDE (Portable) available.
- 1
- 2
- 3
1.2.1.20190416 | Updated: 13 Apr 2023
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
2,096
Downloads of v 1.2.1.20190416:
44
Maintainer(s):
Software Author(s):
- NetEase Inc
Airtest IDE (Portable) 1.2.1.20190416
This is not the latest version of Airtest IDE (Portable) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by NetEase Inc. The inclusion of NetEase Inc trademark(s), if any, upon this webpage is solely to identify NetEase Inc goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Airtest IDE (Portable), run the following command from the command line or from PowerShell:
To upgrade Airtest IDE (Portable), run the following command from the command line or from PowerShell:
To uninstall Airtest IDE (Portable), run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download airtest-ide --internalize --version=1.2.1.20190416 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade airtest-ide -y --source="'INTERNAL REPO URL'" --version="'1.2.1.20190416'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade airtest-ide -y --source="'INTERNAL REPO URL'" --version="'1.2.1.20190416'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install airtest-ide
win_chocolatey:
name: airtest-ide
version: '1.2.1.20190416'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'airtest-ide' do
action :install
source 'INTERNAL REPO URL'
version '1.2.1.20190416'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller airtest-ide
{
Name = "airtest-ide"
Version = "1.2.1.20190416"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'airtest-ide':
ensure => '1.2.1.20190416',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved by moderator virtualex on 18 Apr 2023.
Airtest IDE (Portable)
About
- Airtest - is an Cross-Platform UI Automation Framework for Games and Apps.
- AirtestIDE - is an out of the box GUI tool that helps to create and run cases in a user-friendly way. AirtestIDE supports a complete automation workflow:
create, run, report
.
Features
- Write Once, Run Anywhere: Airtest provides cross-platform APIs, including app installation, simulated input, assertion and so forth. Airtest uses image recognition technology to locate UI elements so that you can automate games and apps without injecting any code.
- Fully Scalable: Airtest cases can be easily run on large device farms, using commandline or python API. HTML reports with detailed info and screen recording allow you to quickly locate failure points. NetEase builds Airlab on top of the Airtest Project.
- Poco: Poco adds the ability to directly access object(UI widget) hierarchy across the major platforms and game engines. It allows writing instructions in Python, to achieve more advanced automation.
Game Test
With image recognition and UI hierarchy, our automation framework support game testing.
- Supports all game engines and apps
- Multiplatform
- Easy to use
Android native apps
In Android native apps testing process, Airtest can play a siginificant role - plug-and-play.
Windows applications
Support for Windows applications, write one code and run the it across the platforms.
iOS Support
With poco, Airtest can access iOS native element and find out their location and attributes, which make iOS testing process easy and convenient.
Selenium Plugin
Base on Chrome Devtools Protocol, record and generate selenium scripts, accurately access web element.
Documentation
You can find the complete Airtest documentation on readthedocs.
################################################################################
# Content paths
################################################################################
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$ErrorActionPreference = 'Stop';
$packageName= 'airtest-ide'
$folderName = Join-Path $toolsDir 'AirtestIDE'
$ProgramsPath = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$DesktopPath = [System.Environment]::GetFolderPath([System.Environment+SpecialFolder]::Desktop)
$testProcessAdminRights = Test-ProcessAdminRights
Write-Host "ProcessAdminRights:" $testProcessAdminRights
################################################################################
# Trying to remove shortcuts
################################################################################
# From Programs menu
try {
$shortcutFilePathProgramsPath = Join-Path $ProgramsPath 'AirtestIDE.lnk'
Remove-Item -Path $shortcutFilePathProgramsPath -Force
Write-Host 'Shortcut AirtestIDE.lnk successfully removed from Start Menu.'
}
catch {
Write-Host 'Shortcut AirtestIDE.lnk not found in Start Menu. Nothing to remove. Skipping.'
}
# From Desktop
try {
$shortcutFilePathDesktopPath = Join-Path $DesktopPath 'AirtestIDE.lnk'
Remove-Item -Path $shortcutFilePathDesktopPath -Force
Write-Host 'Shortcut AirtestIDE.lnk successfully removed from Desktop.'
}
catch {
Write-Host 'Shortcut AirtestIDE.lnk not found in Desktop. Nothing to remove. Skipping.'
}
# AirtestIDE folder
try {
remove-item -path $folderName\* -Force -Recurse -ErrorAction SilentlyContinue
Write-Host 'AirtestIDE folder successfully cleared.'
}
catch {
Write-Host 'AirtestIDE folder not cleared. Something went wrong. Skipping.'
}
Log in or click on link to see number of positives.
- airtest-ide.1.2.1.20190416.nupkg (40f0b708ab69) - ## / 61
- AirtestIDE_2019-04-16_py3_win64.zip (1f40cc8e7a76) - ## / 53
- AirtestIDE_2019-04-16_py3_win32.zip (9645e752d695) - ## / 60
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Airtest IDE (Portable) 1.2.15.20230405 | 210 | Friday, May 12, 2023 | Approved | |
Airtest IDE (Portable) 1.2.15.20230404 | 77 | Tuesday, April 18, 2023 | Exempted | |
Airtest IDE (Portable) 1.2.14.20220520 | 31 | Saturday, October 7, 2023 | Approved | |
Airtest IDE (Portable) 1.2.13.20211230 | 31 | Friday, October 6, 2023 | Approved | |
Airtest IDE (Portable) 1.2.12.20210929 | 33 | Friday, October 6, 2023 | Approved | |
Airtest IDE (Portable) 1.2.11.20210819 | 35 | Friday, October 6, 2023 | Approved | |
Airtest IDE (Portable) 1.2.10.20210621 | 50 | Friday, May 12, 2023 | Approved | |
Airtest IDE (Portable) 1.2.9.20210427 | 51 | Friday, May 12, 2023 | Approved | |
Airtest IDE (Portable) 1.2.8.20210223 | 52 | Friday, May 12, 2023 | Approved | |
Airtest IDE (Portable) 1.2.7.20210207 | 257 | Thursday, February 18, 2021 | Approved | |
Airtest IDE (Portable) 1.2.6.20201013 | 45 | Tuesday, April 18, 2023 | Approved | |
Airtest IDE (Portable) 1.2.5.20200716 | 45 | Tuesday, April 18, 2023 | Approved | |
Airtest IDE (Portable) 1.2.4.20200717 | 31 | Friday, October 6, 2023 | Exempted | |
Airtest IDE (Portable) 1.2.3.20200121 | 46 | Tuesday, April 18, 2023 | Approved | |
Airtest IDE (Portable) 1.2.3.20200120 | 52 | Tuesday, April 18, 2023 | Approved | |
Airtest IDE (Portable) 1.2.2.20190910 | 42 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 1.2.1.20190416 | 44 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 1.2.0.20190115 | 45 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 1.1.0.20181106 | 53 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 1.0.1.20181011 | 50 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 1.0.0.20180918 | 47 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 1.0.0.20180905 | 47 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 0.1.6.20180807 | 45 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 0.1.5.20180720 | 49 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 0.1.4.20180710 | 46 | Thursday, April 13, 2023 | Approved | |
Airtest IDE (Portable) 0.1.3.20180629 | 119 | Thursday, February 18, 2021 | Approved | |
Airtest IDE (Portable) 0.1.2.20180626 | 105 | Thursday, February 18, 2021 | Approved | |
Airtest IDE (Portable) 0.1.1.20180619 | 91 | Thursday, February 18, 2021 | Approved | |
Airtest IDE (Portable) 0.1.0.20180615 | 89 | Thursday, February 18, 2021 | Approved | |
Airtest IDE (Portable) 0.0.18.20180522 | 153 | Wednesday, January 13, 2021 | Approved |
Copyright (c) 2018 NetEase, Inc
V1.2.1.20190416
Release Date: 2019-04-16
New Features
- Airtest and IDE have added another way to create new scripts, support for creating and running pure python scripts.
- Added automatic backup script and recovery script function to avoid losing script content when crashing.
- When choose to connect the device in ADB Touch mode, actually use the ADB command to control the mobile phone now (the Minitouch control is used in the past, which causes some non-mobile devices to operate the screen), but the delay is slightly higher.
- Replace some of the icons, and may continue to modify them later.
- Several new image recognition algorithms have been added. Please refer to the documentation for comparison and selection of operational efficiency.
Bug Fixes
- Fixed a crash caused by displaying the auto-complete menu under mac.
- Fix bug in horizontal and vertical orientation when right-running script.
- Fixed the problem that the mac packaged version could not print Chinese.
- Fixed a bug where the IDE could not exit normally after connecting ios multiple times.
- When generating poco code automatically, ignore array and UI number of the same name.
- When you double-click the poco node to generate the code, it will not automatically wrap, and the focus will automatically return to the editing window for subsequent editing.
- Cancel the automatic completion pull-down menu to monitor the HOME and END buttons.
- Fixed an issue where the directory folder structure in the script was lost when the script was packaged.
- Airtest fixes the problem that the yosemite input method cannot be enabled correctly when remotely connecting the mobile phone. Some Samsung mobile phone sliding operation is abnormal. In the low version pip, the installation may fail.
- Fix double screen misplacement on windows.
This package has no dependencies.
Ground Rules:
- This discussion is only about Airtest IDE (Portable) and the Airtest IDE (Portable) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Airtest IDE (Portable), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.