Learn R Programming

RSauceLabs (version 0.1.6)

getListOfSiblingAccounts: Get a list of sibling accounts

Description

Get a list of sibling accounts associated with provided account

Usage

getListOfSiblingAccounts(account, username = Sys.getenv("SLUSER"), page = NULL, per_page = 50L, ...)

Arguments

account
An object of class "account". An account object see account.
username
SauceLabs username
page
optional defaults to NULL
per_page
results per page (max 50L). Defaults to 50L
...
Additonal function arguments - Currently unused.

See Also

Other accountMethods: changeAccessKey, createUser, getListOfSubAccounts, getSubAccountInformation, getUserConcurrency, getUser

Examples

Run this code
## Not run: 
# myAcc <- account()
# appData <- getUser(myAcc)
# 
# createUser(myAcc, newUsername = "superstartester", password = "johndoe"
#            , name = "John", email = "superstartester@example.com")
# # $errors
# # [1] "Subaccount capacity exhausted."
# uC <- getUserConcurrency(myAcc)
# #> rbindlist(uC$concurrency$self[c("allowed", "current")], fill = TRUE)
# #manual mac overall real_device
# #1:      5   5       5           0
# #2:      0   0       0          NA
# users <- getListOfSubAccounts(myAcc)
# #> users$users_total
# #[1] 1
# siblings <- getListOfSiblingAccounts(myAcc)
# #> getListOfSiblingAccounts(myAcc)
# #list()
# subAcc <- getSubAccountInformation(myAcc)
# 
# # change accesskey for a user
# # changeAccessKey(myAcc, "rsaucelabs")
# ## End(Not run)

Run the code above in your browser using DataLab