mcdcorp / opentest

Open source test automation tool for web applications, mobile apps and APIs
https://getopentest.org
MIT License
447 stars 107 forks source link

How to open IE driver Using Opentest #568

Closed MayankCarters closed 1 year ago

MayankCarters commented 2 years ago

Need a sample of actor for IE driver please help

adrianth commented 2 years ago

Use this in the selenium section of your "actor.yaml":

# ...

selenium:
    # seleniumServerUrl: http://127.0.0.1:9515
    desiredCapabilities:
        browserName: ie
        ieOptions:
            args: [ --start-maximized ]
    ieDriverExePath: C:/Program Files/Internet Explorer/IEDriverServer.exe
    ieDriverExeArgs: [--start-maximized, --ignore-certificate-errors]

# ...

Of course, some things in there are optional (seleniumServerUrl, ieOptions, ieDriverExeArgs).

DinoSaulo commented 1 year ago

Close this Issue please.