// Open browser
Navigator.Open("http://inflectra.com");
// Open second tab
Navigator.ExecJS("window.open('http://libraryinformationsystem.org/react-js/index.html');", Navigator.Find("/html"));
// Wait a bit
Global.DoSleep(1000);
// Read title of the tab we just opened
var title = Navigator.Find("//h1").GetInnerText();
// Print the result to the report
Tester.Message(title);
// Close the tab
Navigator.ExecJS("window.close();", Navigator.Find("/html"));