File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/main/java/com/nordstrom/automation/selenium/examples Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -23,9 +23,13 @@ public IOSPage(WebDriver driver) {
2323 * This enumeration defines element locator constants.
2424 */
2525 protected enum Using implements ByEnum {
26+ /** addend A input field */
2627 INTEGER_A (By .id ("IntegerA" )),
28+ /** addend B input field */
2729 INTEGER_B (By .id ("IntegerB" )),
30+ /** 'Compute Sum' button */
2831 COMPUTE_SUM (By .id ("ComputeSumButton" )),
32+ /** answer label */
2933 ANSWER (By .id ("Answer" ));
3034
3135 private final By locator ;
@@ -65,7 +69,7 @@ public void updateIntegerA(int a) {
6569 /**
6670 * Update the value of addend B.
6771 *
68- * @param a new value
72+ * @param b new value
6973 */
7074 public void updateIntegerB (int b ) {
7175 findElement (Using .INTEGER_B ).sendKeys (Integer .toString (b ));
You can’t perform that action at this time.
0 commit comments