public interface RectangleConditions extends Conditions<org.openqa.selenium.Rectangle>
| Modifier and Type | Method and Description |
|---|---|
boolean |
dimension(int width,
int height)
Check that rectangle has the given dimension.
|
IntegerConditions |
height()
Add advanced conditions on rectangle height.
|
boolean |
height(int height)
Check that rectangle has the given height.
|
RectangleConditions |
not()
Negates this condition object.
|
boolean |
position(int x,
int y)
Check that rectangle has the given (x, y) position.
|
boolean |
positionAndDimension(int x,
int y,
int width,
int height)
Check that rectangle has the given psition and dimension.
|
IntegerConditions |
width()
Add advanced conditions on rectangle width.
|
boolean |
width(int width)
Check that rectangle has the given width.
|
IntegerConditions |
x()
Add advanced conditions on rectangle x position.
|
boolean |
x(int x)
Check that rectangle has the given x position.
|
IntegerConditions |
y()
Add advanced conditions on rectangle y position.
|
boolean |
y(int y)
Check that rectangle has the given y position.
|
verifyRectangleConditions not()
Conditionsnot in interface Conditions<org.openqa.selenium.Rectangle>boolean x(int x)
x - x positionIntegerConditions x()
boolean y(int y)
y - y positionIntegerConditions y()
boolean position(int x,
int y)
x - x positiony - y positionboolean width(int width)
width - widthIntegerConditions width()
boolean height(int height)
height - heightIntegerConditions height()
boolean dimension(int width,
int height)
width - widthheight - heightboolean positionAndDimension(int x,
int y,
int width,
int height)
x - x positiony - y positionwidth - widthheight - heightCopyright © 2016 FluentLenium. All Rights Reserved.