Selenium Quiz 2 This Quiz is based on Selenium Videos 1 Point for every correct answer | All Quizzes 1. How to find a single element with Selenium WebElement element = driver.findElement(By.name(“q”)); WebElement element = driver.findElementBy(name(“q”)); None of the above 2. How to find multiple elements in Selenium List options = driver.findElement(By.name(“Optionwithcheck[]”)); List options = driver.findElements(By.name(“Optionwithcheck[]”)); None of the above 3. Which is the best locator strategy ID – if available, unique and consistent XPath linkText 4. What are RelativeLocators used for To find an element with respect to its position from a neighbouring element To find hidden elements directly To find shadow dom elements directly None of the above 5. Relative Locators are added in Selenium 4 True False Loading … 105