parent
51f6a52c91
commit
578036f576
@ -1,32 +0,0 @@ |
|||||||
import { NightwatchBrowser } from 'nightwatch' |
|
||||||
import EventEmitter from 'events' |
|
||||||
|
|
||||||
class HidePopUpPanel extends EventEmitter { |
|
||||||
command(this: NightwatchBrowser) { |
|
||||||
browser |
|
||||||
.perform((done) => { |
|
||||||
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; |
|
||||||
} |
|
||||||
#scamDetails { |
|
||||||
display:none !important; |
|
||||||
} |
|
||||||
`)
|
|
||||||
}, [], done()) |
|
||||||
}) |
|
||||||
.perform((done) => { |
|
||||||
done() |
|
||||||
this.emit('complete') |
|
||||||
}) |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
module.exports = HidePopUpPanel |
|
@ -0,0 +1,25 @@ |
|||||||
|
import { NightwatchBrowser } from 'nightwatch' |
||||||
|
import EventEmitter from 'events' |
||||||
|
|
||||||
|
class HidePopupPanel extends EventEmitter { |
||||||
|
command(this: NightwatchBrowser) { |
||||||
|
browser |
||||||
|
.perform((done) => { |
||||||
|
browser.execute(function () { |
||||||
|
return localStorage.getItem('did_show_popup_panel') |
||||||
|
}, [], function (result) { |
||||||
|
if (!result.value) { |
||||||
|
browser.waitForElementVisible('*[data-id="aiStatusButton"]') |
||||||
|
.click('*[data-id="aiStatusButton"]') |
||||||
|
} |
||||||
|
done() |
||||||
|
}) |
||||||
|
}) |
||||||
|
.perform((done) => { |
||||||
|
done() |
||||||
|
this.emit('complete') |
||||||
|
}) |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
module.exports = HidePopupPanel |
Loading…
Reference in new issue