pip install botright
playwright installIt is fully plugable with your existing playwright code. You only have to change your browser initialization!
import asyncio
import botright
async def main():
botright_client = await botright.Botright(headless=False)
browser = await botright_client.new_browser()
page = await browser.new_page()
# Continue by using the Page
await botright_client.close()
if __name__ == "__main__":
asyncio.run(main())Read the Documentation
The AI of this bot is not mine and i dont take any credits for it.
It was created by QIN2DIM and can be found here.
However, i edited out some code/files, to make Botright lightweighter and to use less imports.
Also, i coded a MouseMovement Generator, to get more realistic MotionData. It uses Interpolation between CaptchaImage-Coordinates to do so.
Read the CONTRIBUTING.md file.
© Vinyzu
(Commercial Usage is allowed, but source, license and copyright has to made available. Botright does not provide and Liability or Warranty)
QIN2DIM (For his great AI work.)
MaxAndolini (For shared knowledge of hCaptcha bypassing.)