I am automating a web application, when i call element from browser using javascript classname i get the following:
Then I access the text of the first element at position 0:
but when i try to automate this process with selenium java i get the error "Index 0 out of bounds for length 0" my code is the following
String pattern_2 = driver.findElements(By.className("static-links__link fx-typography-meta js-header-link-service")).get(0).getText();
please help me! :c

