.waitForElementContainsText('*[data-id="compiledErrors"]','CompilerError: Stack too deep when compiling inline assembly: Variable headStart is 1 slot(s) too deep inside the stack.')
.waitForElementContainsText('*[data-id="compiledErrors"]','CompilerError: Stack too deep when compiling inline assembly: Variable headStart is 1 slot(s) too deep inside the stack.',60000)
.scrollAndClick('[data-id="https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC20/ERC20.sol"]')// click on error which point to ERC20 code
.pause(5000)
.getEditorValue((content)=>{
browser.assert.ok(content.indexOf('contract ERC20 is Context, IERC20')!==-1,
'current displayed content should be from the ERC20 source code')
})
.waitForElementContainsText('#input','contract ERC20 is Context, IERC20',60000)