Error: NO browser is open

Hi Nathalia,

If you opened the browser with Browser Library keywords then you won’t be able to use SeleniumLibrary keyword on that browser session as SeleniumLibrary can only interact with browsers that SeleniumLibrary opened and vice versa Browser Library can only interact with browsers that Browser Library opened.

You will need to chose one or the other and use that for all the steps in your test case.

FYI the Browser Library equivalent is probably using an assertion with Get Text

${text} =    Get Text    xpath=//td[contains(text(), "O BOTICARIO")]    ==    BOTICARIO

Dave.

2 Likes