-
- All Implemented Interfaces:
-
io.github.kakaocup.kakao.common.actions.BaseActions
public interface DatePickerAssertion implements BaseActions
Provides assertions for date picker
-
-
Method Summary
Modifier and Type Method Description UnithasDate(Integer year, Integer monthOfYear, Integer day)Check if picker dialog contain selected date Month number will be normalized UnithasDay(Integer day)Check if picker dialog contain selected day UnithasMonth(Integer monthOfYear)Check if picker dialog contain selected month UnithasYear(Integer year)Check if picker dialog contain selected year abstract ViewInteractionDelegategetView()-
Methods inherited from class io.github.kakaocup.kakao.picker.date.DatePickerAssertion
act, click, doubleClick, longClick, onFailure, pressImeAction, repeatUntil, scrollTo -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
hasDate
Unit hasDate(Integer year, Integer monthOfYear, Integer day)
Check if picker dialog contain selected date Month number will be normalized
- Parameters:
year- yearmonthOfYear- monthday- day
-
hasMonth
Unit hasMonth(Integer monthOfYear)
Check if picker dialog contain selected month
- Parameters:
monthOfYear- month
-
hasYear
Unit hasYear(Integer year)
Check if picker dialog contain selected year
- Parameters:
year- year
-
getView
abstract ViewInteractionDelegate getView()
-
-
-
-