While using Applitools Eyes, you might encounter issues with the eyes.open() command.
For example, you were in the process of implementing Eyes for HP QTP (UFT), and the following error message appeared:
Open(): No baseline info was set!
Function file: C:\Eyes\Eyes.qfl
Line (260): " eyes_.Throw "Open(): No baseline info was set!"".
The reason for this error message might be a problem with the command setting. It is important to make sure that the command SetBaselineInfoFromBrowser is properly set in your test code, for example:
Set br = Browser(“Google”)
br.Navigate(“http://www.google.com”)
eyes.ApiKey = “YOUR_API_KEY”
Call eyes.SetBatch(“10”, “MyBatch”)
call eyes.SetBaselineInfoFromBrowser(br, 1200, 600)
eyes.MatchLevel= eyes.MatchLayout
call eyes.Open(“google”, “GoogleIE11”)
’browser.Refresh
call eyes.CheckObject(br, “Google”)
eyes.Close()