Documentation ¶
Index ¶
Constants ¶
View Source
const ( AppName = "tester" PthSep = string(os.PathSeparator) LanguageDefault = "en" LanguageEN = "en" LanguageZH = "zh" UserTokenExpireTime = 365 * 24 * 60 * 60 * 1000 RegisterExpireTime = 5 // min WaitForExecTime = 60 // min VmTimeout = 30 // min RetryTime = 3 AgentRunTime = 20 // sec WebCheckQueueInterval = 10 // sec AgentCheckDeviceInterval = 10 // sec MaxVmOnHost = 3 RpcPort = 8972 UploadDir = "uploads" Sep_Of_Mac_Address = ":" Build_Command_Param_AppPath = "${appPath}" Build_Command_Param_AppPackage = "${appPackage}" Build_Command_Param_AppActivity = "${appActivity}" Build_Command_Param_AppiumPort = "${appiumPort}" Build_Command_Param_SeleniumDriver = "${driverPath}" PageSize = 15 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BrowserType ¶
type BrowserType string
const ( Chrome BrowserType = "chrome" Firefox BrowserType = "firefox" Edge BrowserType = "edge" IE BrowserType = "ie" )
type BuildProgress ¶
type BuildProgress string
const ( ProgressCreated BuildProgress = "created" ProgressLaunchVm BuildProgress = "launch_vm" ProgressPending BuildProgress = "pending" ProgressInProgress BuildProgress = "in_progress" ProgressTimeout BuildProgress = "timeout" ProgressCompleted BuildProgress = "completed" )
type BuildStatus ¶
type BuildStatus string
const ( StatusCreated BuildStatus = "created" StatusPass BuildStatus = "pass" StatusFail BuildStatus = "fail" )
type DeviceStatus ¶
type DeviceStatus string
const ( DeviceOff DeviceStatus = "off" DeviceOn DeviceStatus = "on" DeviceActive DeviceStatus = "active" DeviceBusy DeviceStatus = "busy" DeviceUnknown DeviceStatus = "unknown" )
type HostStatus ¶
type HostStatus string
const ( HostActive HostStatus = "active" HostOffline HostStatus = "offline" )
type OsPlatform ¶
type OsPlatform string
const ( OsWindows OsPlatform = "windows" OsLinux OsPlatform = "linux" OsMac OsPlatform = "mac" OsAndroid OsPlatform = "android" OsIos OsPlatform = "ios" )
type ResultCode ¶
type ResultCode int
const ( ResultSuccess ResultCode = 1 ResultFail ResultCode = 0 )
func (ResultCode) Int ¶
func (c ResultCode) Int() int
type ServiceStatus ¶
type ServiceStatus string
const ( ServiceOff ServiceStatus = "off" ServiceOn ServiceStatus = "on" ServiceActive ServiceStatus = "active" ServiceBusy ServiceStatus = "busy" )
type WorkPlatform ¶
type WorkPlatform string
const ( Host WorkPlatform = "host" Vm WorkPlatform = "vm" Box WorkPlatform = "box" Android WorkPlatform = "android" Ios WorkPlatform = "ios" )
Click to show internal directories.
Click to hide internal directories.