Recently dive in to the world of Selenium and Java and I have a question - is there a way to dynamically insert a random value into a designated field, for example the "Case ID" field where I want to generate an 8-digit alphanumeric code? The xpath for the field in question is shown below:
driver.findElements(By.xpath(".//*[@id='case_id']")).size() != 0) {
Appreciate any help, P