Forum Discussion

Andrew_Shadow's avatar
Andrew_Shadow
New Contributor
5 years ago
Solved

TestNG/Selenium - Configure command line params

Hello!

My project uses a bunch of TestNG +Selenium. I've created custom listener(extends TestListenerAdapter) for improved logging in the project. Listener class name is added to testng.xml. In Eclipse IDE it works fine.

TestComplete ignores testng.xml during tests running and creates its own commad like:
java.exe -classpath ...jar...; org.testng.TestNG -testclass tests.general.Checking -log 2

To use my custom listener in this command the parameter -listener should be added, something like: 

java.exe -classpath ...jar...; org.testng.TestNG -testclass tests.general.Checking -log 2 -listener general.CustomListener

How can I configure TestComplete to use my custom listener?

Thanks!

  •  I don't believe that's possible.  The command line information is embedded within the tool and not accessible externally.

  • Andrew_Shadow's avatar
    Andrew_Shadow
    5 years ago

    Thanks,

2 Replies

  • tristaanogre's avatar
    tristaanogre
    Esteemed Contributor

     I don't believe that's possible.  The command line information is embedded within the tool and not accessible externally.

    • Andrew_Shadow's avatar
      Andrew_Shadow
      New Contributor

      Thanks,