Package com.deque.html.axecore.axeargs
Class AxeRunOptions
- java.lang.Object
-
- com.deque.html.axecore.axeargs.AxeRunOptions
-
public class AxeRunOptions extends Object
Run configuration data that is passed to axe for scanning the web page.
-
-
Constructor Summary
Constructors Constructor Description AxeRunOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BooleangetAbsolutePaths()gets if there are absolute paths.IntegergetFrameWaitTimeInMilliseconds()gets the frame wait time milliseconds.BooleangetIFrames()gets if there are iFrames.BooleangetRestoreScroll()gets if there is a restore scroll.List<String>getResultTypes()gets the result types.Map<String,AxeRuleOptions>getRules()gets the rules.AxeRunOnlyOptionsgetRunOnly()gets the run only property.booleangetXPath()gets the xpath.voidsetAbsolutePaths(Boolean newAbsolutePath)sets if there are absolute paths.voidsetFrameWaitTimeInMilliseconds(Integer newFrameWaitTime)sets the frame wait time milliseconds.voidsetIFrames(Boolean newIFrames)sets if there are iFrames.voidsetRestoreScroll(Boolean newRestoreScroll)sets the restore scroll.voidsetResultTypes(List<String> newResultTypes)sets the result types.voidsetRules(Map<String,AxeRuleOptions> newRules)sets the rules.voidsetRunOnly(AxeRunOnlyOptions newRunOnly)sets the run only property.voidsetXPath(Boolean newXPath)sets the xpath.
-
-
-
Method Detail
-
getRunOnly
public AxeRunOnlyOptions getRunOnly()
gets the run only property.- Returns:
- the run only property
-
setRunOnly
public void setRunOnly(AxeRunOnlyOptions newRunOnly)
sets the run only property.- Parameters:
newRunOnly- the new run only to be set
-
getRules
public Map<String,AxeRuleOptions> getRules()
gets the rules.- Returns:
- the rules
-
setRules
public void setRules(Map<String,AxeRuleOptions> newRules)
sets the rules.- Parameters:
newRules- the new rules to be set
-
getResultTypes
public List<String> getResultTypes()
gets the result types.- Returns:
- the result types
-
setResultTypes
public void setResultTypes(List<String> newResultTypes)
sets the result types.- Parameters:
newResultTypes- the new result types to be set
-
getXPath
public boolean getXPath()
gets the xpath.- Returns:
- the xpath
-
setXPath
public void setXPath(Boolean newXPath)
sets the xpath.- Parameters:
newXPath- the new xpath to be set
-
getAbsolutePaths
public Boolean getAbsolutePaths()
gets if there are absolute paths.- Returns:
- if there are absolute paths
-
setAbsolutePaths
public void setAbsolutePaths(Boolean newAbsolutePath)
sets if there are absolute paths.- Parameters:
newAbsolutePath- the bool to be set if there are absolute paths
-
getIFrames
public Boolean getIFrames()
gets if there are iFrames.- Returns:
- if there are iFrames
-
setIFrames
public void setIFrames(Boolean newIFrames)
sets if there are iFrames.- Parameters:
newIFrames- the bool to be set if there are iFrames
-
getRestoreScroll
public Boolean getRestoreScroll()
gets if there is a restore scroll.- Returns:
- the bool if there is a restore scroll
-
setRestoreScroll
public void setRestoreScroll(Boolean newRestoreScroll)
sets the restore scroll.- Parameters:
newRestoreScroll- bool if there is a restore scroll
-
getFrameWaitTimeInMilliseconds
public Integer getFrameWaitTimeInMilliseconds()
gets the frame wait time milliseconds.- Returns:
- the frame wait time
-
setFrameWaitTimeInMilliseconds
public void setFrameWaitTimeInMilliseconds(Integer newFrameWaitTime)
sets the frame wait time milliseconds.- Parameters:
newFrameWaitTime- the new frame wait time to be set
-
-