Skip to content

[Bug]: #365

@Zeli12345

Description

@Zeli12345

Checklist before reporting

  • I have searched for similar issues and didn't find a duplicate.
  • I have updated to the latest version of pydoll to verify the issue still exists.

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions