This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8>" /> | |
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> | |
</head> | |
<body> | |
<div id="div" style="cursor: pointer;"> | |
<p>person.name</p> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stages: | |
- setup | |
- tests | |
- manual | |
docker: | |
stage: setup | |
script: | |
- /usr/bin/cm selenoid start --vnc | |
- /usr/bin/cm selenoid-ui start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let networkLogsMessagesArray = []; | |
jasmine | |
.getEnv() | |
.afterEach(async () => { | |
/** | |
* Collects response logs with logCorrelationId from network console for all not-disabled tests | |
*/ | |
const networkLogs = await browser.manage().logs().get('performance'); |