I want to integrate Selenium WebDriver into another automation tool I am using. The installation and the configuration of Selenium WebDriver is very straightforward and simple. However I'd like to avoid the installation process and be able to deploy the WebDriver just by copying the files.
So what I've tried is to copy just the webdriver directory itself(as shown below) and run a simple test from within this directory.
\selenium-2.41.0
..\py
..\selenium
..\common
..\webdriver
..\__init__.py
..\selenium.py
..\selenium.egg-info
..\setup.py
As a result, it looks like it's working correctly but slow(not sure why).
So I have 2 questions:
- I am aware that this is probably not the best practice but are there any obvious issues and\or limitations that I might encounter when using it like that?
- Could the sluggish behavior be cause by the fact WebDriver was not installed properly?