Class AddonsHelper
- java.lang.Object
-
- io.testproject.sdk.internal.addons.AddonsHelper
-
public class AddonsHelper extends java.lang.ObjectHelper class allowing to execute Addons.
-
-
Constructor Summary
Constructors Constructor Description AddonsHelper(AgentClient agentClient)Initializes a new instance of the helper.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActionProxyexecute(ActionProxy action)Executes an Action using it's proxy.ActionProxyexecute(ActionProxy action, int timeout)Executes an Action using it's proxy.ActionProxyexecute(ActionProxy action, org.openqa.selenium.By by)Executes an Action using it's proxy.ActionProxyexecute(ActionProxy action, org.openqa.selenium.By by, int timeout)Executes an Action using it's proxy.
-
-
-
Constructor Detail
-
AddonsHelper
public AddonsHelper(AgentClient agentClient)
Initializes a new instance of the helper.- Parameters:
agentClient- Agent client to use for communicating with the Agent.
-
-
Method Detail
-
execute
public ActionProxy execute(ActionProxy action)
Executes an Action using it's proxy.Addons are tiny automation building blocks that have one or more actions. Addon Proxy can be obtained from the Addons page at: TestProject App.
- Parameters:
action- Specific Action proxy.- Returns:
- Presumably modified class with updated output fields.
-
execute
public ActionProxy execute(ActionProxy action, org.openqa.selenium.By by)
Executes an Action using it's proxy.Addons are tiny automation building blocks that have one or more actions. Addon Proxy can be obtained from the Addons page at: TestProject App.
- Parameters:
action- Specific Action proxy.by- Element locator in case the Action needs one.- Returns:
- Presumably modified class with updated output fields.
-
execute
public ActionProxy execute(ActionProxy action, int timeout)
Executes an Action using it's proxy.Addons are tiny automation building blocks that have one or more actions. Addon Proxy can be obtained from the Addons page at: TestProject App.
- Parameters:
action- Specific Action proxy.timeout- maximum amount of time allowed to wait for action execution to complete.- Returns:
- Presumably modified class with updated output fields.
-
execute
public ActionProxy execute(ActionProxy action, org.openqa.selenium.By by, int timeout)
Executes an Action using it's proxy.Addons are tiny automation building blocks that have one or more actions. Addon Proxy can be obtained from the Addons page at: TestProject App.
- Parameters:
action- Specific Action proxy.by- Element locator in case the Action needs one.timeout- maximum amount of time allowed to wait for action execution to complete.- Returns:
- Potentially modified class with updated output fields (if any).
-
-