Hi Dheepthi,
Autotest needs a host machine and build setup, only then you can run autotest on chrome-devices.
Follow the steps from below links to create the host machine environment.
Once you have the setup (cros_sdk environment),
Go inside cros_sdk environment and then run beow command
cros_sdk ebv # ./build_packages --board=<which ever board you want to run autotest on>
You will get board name from "overlays" folder.
Once you have the build environment, you can run any of the client-side and server side autotests from the host machine.
Few things to note:
Make sure both host machine and test machine are in same network so that you can ping both ways.
Avoid using proxy environment. Try to use open network for test.
All tests will be available inside cros_sdk in below location after ./build_packages is done.
/build/<board name>/usr/local/build/autotest/server or client/site_tests/
To run any test from host machine use below command.
cros_sdk env# test_that -b <board name> <ip of test machine> <test name>
Regards