parent
49534d32e2
commit
343e2c761f
@ -1,16 +1,33 @@ |
||||
import { NightwatchBrowser } from 'nightwatch' |
||||
import {NightwatchBrowser} from 'nightwatch' |
||||
import EventEmitter from 'events' |
||||
|
||||
class RefreshPage extends EventEmitter { |
||||
command(this: NightwatchBrowser) { |
||||
browser.refresh() |
||||
.verifyLoad() |
||||
.perform((done) => { |
||||
done() |
||||
this.emit('complete') |
||||
}) |
||||
} |
||||
} |
||||
command(this: NightwatchBrowser) { |
||||
browser |
||||
.refresh() |
||||
.verifyLoad() |
||||
.perform((done) => { |
||||
//if (hideToolTips) {
|
||||
browser.execute(function () { |
||||
// hide tooltips
|
||||
function addStyle(styleString) { |
||||
const style = document.createElement('style') |
||||
style.textContent = styleString |
||||
document.head.append(style) |
||||
} |
||||
|
||||
addStyle(` |
||||
.popover { |
||||
display:none !important; |
||||
} |
||||
`)
|
||||
}, [], done()) |
||||
}) |
||||
.perform((done) => { |
||||
done() |
||||
this.emit('complete') |
||||
}) |
||||
} |
||||
} |
||||
|
||||
module.exports = RefreshPage |
||||
module.exports = RefreshPage |
||||
|
Loading…
Reference in new issue