Selenium Quiz This Quiz is based on Selenium Videos 1 Point for every correct answer | All Quizzes 1. Selenium 4 Webdriver uses JSON Wire Protocol to interact with browser True False 2. In Selenium how to open a website driver.open(“https://google.com”); driver.get(“https://google.com”); driver.navigate().to(“https://selenium.dev”); Both B & C 3. How to get current url driver.getCurrentUrl(); driver.fetchUrl(); 4. How to get title of webpage driver.fetchTitle(); driver.getTitle(); 5. How to open a new window and switch to the window driver.open().newWindow(WindowType.WINDOW); driver.switchTo().newWindow(WindowType.WINDOW); None of the above 6. How to set the browser window size driver.window().setSize(new Dimension(800, 600)); driver.manage().window().setSize(new Dimension(800, 600)); 7. How to set browser window position driver.manage().window().setPosition(new Point(0, 0)); driver.window().setPosition(new Point(0, 0)); 8. How to maximise browser window driver.manage().window().maximize(); driver..maximize(); 9. How to make browser full screen driver.fullscreen(); driver.manage().window().fullscreen(); 10. ______ is an open-source Java library that carries out the management (i.e., download, setup, and maintenance) of the drivers required by Selenium Webdriver WebDriverManager WebDriverSetup BrowserManager Loading … 197