Checklist before reporting
pydoll Version
2.20.1
Python Version
3.12.8
Operating System
Windows
Bug Description
when i tried to load a extension throught arguments, it seem that the extension wont load up, the extension is a manifest 3, when loaded manually it works, what actually is wrong?
i checked chrome://version, on the launch arguments, theres a load extension arguments too
the path for the extension is also correct
here the code i used
Steps to Reproduce
downloaded a unzipped folder of an extension, then used that for load extension arguments
Code Example
import asyncio
from pydoll.browser.chromium import Chrome
from pydoll.browser.options import ChromiumOptions
async def main():
opts = ChromiumOptions()
opts.headless = False
ext_path = r"C:\Users\Zerolysimin\Downloads\New folder (10)\test_extension"
opts.add_argument(f'--load-extension={ext_path}')
async with Chrome(options=opts) as browser:
tab = await browser.start()
await tab.go_to('chrome://extensions')
await asyncio.sleep(211)
asyncio.run(main())
Expected Behavior
No response
Actual Behavior
No response
Relevant Log Output
Additional Context
No response
Checklist before reporting
pydoll Version
2.20.1
Python Version
3.12.8
Operating System
Windows
Bug Description
when i tried to load a extension throught arguments, it seem that the extension wont load up, the extension is a manifest 3, when loaded manually it works, what actually is wrong?
i checked chrome://version, on the launch arguments, theres a load extension arguments too
the path for the extension is also correct
here the code i used
Steps to Reproduce
downloaded a unzipped folder of an extension, then used that for load extension arguments
Code Example
Expected Behavior
No response
Actual Behavior
No response
Relevant Log Output
Additional Context
No response