16 lines
263 B
JavaScript
16 lines
263 B
JavaScript
class BuildOrderComponent {
|
|
constructor(page) {
|
|
this.page = page;
|
|
}
|
|
|
|
jsonTextarea() {
|
|
return this.page.locator('textarea');
|
|
}
|
|
|
|
async getJsonData() {
|
|
return await this.jsonTextarea().inputValue();
|
|
}
|
|
}
|
|
|
|
module.exports = BuildOrderComponent;
|