radio input value
<input type="radio" name="test" id="test" value="this is the value">
radio input value
<input type="radio" name="test" id="test" value="this is the value">
checkboxes and radio buttons
- We locate, and we click on them.
isSelected() isSelected()--> true, else --> false
This method checks if the checkbox/radiobutton is selected or not selected.
isEnabled() isEnabled -> true, else --> false
This method checks if the checkbox/radiobutton is enabled to be clicked.
isDispalyed() isDispalyed()-> true, else --> false
verify the presence of a web element within the web page.
syntax: driver.findElement(LOCATOR).isSelected();
syntax: driver.findElement(LOCATOR).isEnabled();
StaleElementReferenceException:
A stale element reference exception is thrown in one of two cases
1- The element has been deleted entirely.
2- The element is no longer attached to the DOM.
WebElement checkbox = driver.findElement(LOCATOR);
checkbox.click; driver.navigate().refresh();
checkbox = driver.findElement(LOCATOR);
checkbox.click(); <--stale element reference exception will be thrown
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us