0 votes
in Selenium by

The following codes both print the same value

        System.out.println(driver.getTitle());

        System.out.println(driver.findElement(By.tagName(“title”)).getText())

a) True

b) False

1 Answer

0 votes
by
True
...