Below is a snippet of code that is working locally, but not in AppD. The specific line is `driver.quit()` try:
time.sleep(1)
elementName = '//*[@id="ClaimSearch:ClaimSearchScreen:_msgs"]'
WebDriverWait(driver,30).until(EC.element_to_be...
I have a Python/Selenium script that has 30+ of the following. I've included two samples.
try:
xpathName = "//*[@id='locationDeductableAmount']"
xpathValue = "1000"
wait = WebDriverWait(driver, 10)
element = wait.until(EC.element_to_be_clickable((...