Skip to content

Commit fd39507

Browse files
authored
Add more missing JavaDoc
1 parent 449b80e commit fd39507

File tree

1 file changed

+5
-1
lines changed
  • src/main/java/com/nordstrom/automation/selenium/examples

1 file changed

+5
-1
lines changed

src/main/java/com/nordstrom/automation/selenium/examples/IOSPage.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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));

0 commit comments

Comments
 (0)