Skip to content

Commit 7f55171

Browse files
committed
[1.4.2-documentation] - added java docs
1 parent 8ef6b0c commit 7f55171

File tree

1 file changed

+0
-38
lines changed

1 file changed

+0
-38
lines changed

readme.md

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -129,118 +129,80 @@
129129

130130
insideOf(WebElement containerElement, String readableContainerName); // Verify that element is located inside of specified element
131131

132-
133132
withLeftElement(WebElement element); // Verify that element which located left to is correct
134133

135-
136134
withLeftElement(WebElement element, int minMargin, int maxMargin); // Verify that element which located left to is correct with specified margins
137135

138-
139136
withRightElement(WebElement element); // Verify that element which located right to is correct
140137

141-
142138
withRightElement(WebElement element, int minMargin, int maxMargin); // Verify that element which located right to is correct with specified margins
143139

144-
145140
withTopElement(WebElement element); // Verify that element which located top to is correct
146141

147-
148142
withTopElement(WebElement element, int minMargin, int maxMargin); // Verify that element which located top to is correct with specified margins
149143

150-
151144
withBottomElement(WebElement element); // Verify that element which located bottom to is correct
152145

153-
154146
withBottomElement(WebElement element, int minMargin, int maxMargin); // Verify that element which located bottom to is correct with specified margins
155147

156-
157148
notOverlapWith(WebElement element, String readableName); // Verify that element is NOT overlapped with specified element
158149

159-
160150
overlapWith(WebElement element, String readableName); // Verify that element is overlapped with specified element
161151

162-
163152
notOverlapWith(List<WebElement> elements); // Verify that element is NOT overlapped with every element is the list
164153

165-
166154
sameOffsetLeftAs(WebElement element, String readableName); // Verify that element has the same left offset as specified element
167155

168-
169156
sameOffsetLeftAs(List<WebElement> elements); // Verify that element has the same left offset as every element is the list
170157

171-
172158
sameOffsetRightAs(WebElement element, String readableName); // Verify that element has the same right offset as specified element
173159

174-
175160
sameOffsetRightAs(List<WebElement> elements); // Verify that element has the same right offset as every element is the list
176161

177-
178162
sameOffsetTopAs(WebElement element, String readableName); // Verify that element has the same top offset as specified element
179163

180-
181164
sameOffsetTopAs(List<WebElement> elements); // Verify that element has the same top offset as every element is the list
182165

183-
184166
sameOffsetBottomAs(WebElement element, String readableName); // Verify that element has the same bottom offset as specified element
185167

186-
187168
sameOffsetBottomAs(List<WebElement> elements); // Verify that element has the same bottom offset as every element is the list
188169

189-
190170
sameWidthAs(WebElement element, String readableName); // Verify that element has the same width as specified element
191171

192-
193172
sameWidthAs(List<WebElement> elements); // Verify that element has the same width as every element in the list
194173

195-
196174
minWidth(int width); // Verify that width of element is not less than specified
197175

198-
199176
maxWidth(int width); // Verify that width of element is not bigger than specified
200177

201-
202178
widthBetween(int min, int max); // Verify that width of element is in range
203179

204-
205180
sameHeightAs(WebElement element, String readableName); // Verify that element has the same height as specified element
206181

207-
208182
sameHeightAs(List<WebElement> elements); // Verify that element has the same height as every element in the list
209183

210-
211184
minHeight(int height); // Verify that height of element is not less than specified
212185

213-
214186
maxHeight(int height); // Verify that height of element is not bigger than specified
215187

216-
217188
sameSizeAs(WebElement element, String readableName); // Verify that element has the same size as specified element
218189

219-
220190
sameSizeAs(List<WebElement> elements); // Verify that element has the same size as every element in the list
221191

222-
223192
heightBetween(int min, int max); // Verify that height of element is in range
224193

225-
226194
minOffset(int top, int right, int bottom, int left); // Verify that min offset of element is not less than (min value is -10000)
227195

228-
229196
maxOffset(int top, int right, int bottom, int left); // Verify that max offset of element is not bigger than (min value is -10000)
230197

231-
232198
withCssValue(String cssProperty, String... args); // Verify that element has correct CSS values
233199

234-
235200
withoutCssValue(String cssProperty, String... args); // Verify that concrete CSS values are absent for specified element
236201

237-
238202
equalLeftRightOffset(); // Verify that element has equal left and right offsets (e.g. Bootstrap container)
239203

240-
241204
equalTopBottomOffset(); // Verify that element has equal top and bottom offset (aligned vertically in center)
242205

243-
244206
changeMetricsUnitsTo(ResponsiveUIValidator.Units units); // Change units to Pixels or % (Units.PX, Units.PERCENT)
245207

246208
* For list of elements findElements({element}):

0 commit comments

Comments
 (0)