28 lines
807 B
JavaScript
28 lines
807 B
JavaScript
const { TIMEOUT_ELEMENT_MS } = require('../../tests-helpers/constants');
|
|
|
|
module.exports = {
|
|
'Fetch instrumentation': function (browser) {
|
|
browser
|
|
.url('http://localhost:8090/fetch')
|
|
.waitForElementVisible('body', TIMEOUT_ELEMENT_MS)
|
|
.waitForElementVisible('#button1', TIMEOUT_ELEMENT_MS)
|
|
.click('#button1')
|
|
.waitForElementVisible('#otelSeleniumDone', TIMEOUT_ELEMENT_MS)
|
|
.execute(
|
|
() => {
|
|
const spans = otel.memoryExporter.getFinishedSpans();
|
|
return otel.JSONSafeStringify(spans);
|
|
},
|
|
[],
|
|
(result) => {
|
|
const spans = JSON.parse(result.value);
|
|
browser.assert.equal(spans.length, 2, 'Should export 2 spans');
|
|
},
|
|
)
|
|
|
|
browser.end(() => {
|
|
console.log('end');
|
|
});
|
|
},
|
|
};
|