1.0.4 • Published 1 year ago
playwright-utils-fayazbinsalam v1.0.4
playwright-utils-p32929
A utility class for Playwright made by me for me
How to use
First create a browser instance:
const browser = new Chrome()
After that you can create multiple pages ( tabs ) within the same browser instance:
const page1 = await browser.getNewPage()
const page2 = await browser.getNewPage()
After that, you can use the pages however you want:
await page1.goto(`https://www.google.com/`)
await page2.goto(`https://www.youtube.com/`)
When you are done, you can close all the pages and browser safely:
await browser.destroy()
But you can already do all these without this package. So, why need this? Because it has these functions:
browser.downloadFile
browser.downloadFileByButtonClick
browser.uploadFiles
browser.uploadFilesForced
browser.findAndClickByElementTagIfIncludes
browser.findAndClickByElementTag
browser.findAndClickByClassName
browser.getCurrentHeightWidth
browser.copyTextToClipboard
browser.gotoForce
browser.scrollDown
browser.getCurrentPageUrl
browser.setIphoneViewport
browser.resetViewport
browser.tryClick
browser.waitForTimeout
I'm too lazy to write how each function works. Your IDE will guide you through the parameters and return types of these functions. If you still need help, ask ChatGPT or Google :)
License
MIT License
Copyright (c) 2024 Fayaz Bin Salam
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.