Skip to content

Commit fb6cfc0

Browse files
web_tester to web_pilot
1 parent 556a673 commit fb6cfc0

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11

2-
# web_tester
2+
# web_pilot
33

44
A simple selenium extension which contains Browser class with methods defining different actions can be performed on the web elements.
55

66
## Development purpose
77

8-
- The goal of web tester is to reduce the code complexities for developing a testing script that should test if your web applications is working fine.
8+
- The goal of web pilot is to reduce the code complexities for developing a testing script that should test if your web applications is working fine.
99
- When ever a developer or designer make a changes to your web application. Testing needs to be performed for all the elements of your web.
1010
- After every change you may need to add or modify a lengthy selenium code.
1111
- Number of Exceptions are needed to be handled for each action.
12-
- web_tester handles all those and continous with checking all the elements.
12+
- web_pilot handles all those and continous with checking all the elements.
1313

1414
## Actions Available
1515

@@ -30,11 +30,13 @@ python setup.py install
3030

3131
For headless mode which can be used for automate the testing I prefer using [headless_ie_selenium](https://github.com/kybu/headless-selenium-for-win/releases) driver.
3232

33+
>This is for windows only.
34+
3335
## Example
3436

3537
``` python
3638
# Example for IE
37-
from web_tester.browser import Browser
39+
from web_pilot.browser import Browser
3840

3941
driver_location = "/path/to/IEdriver.exe" #or "/path/to/selenium_headless_ie.exe"
4042

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name="web_tester",
7+
name="web_pilot",
88
version="0.0.1",
99
author="Vishnu Chegondi",
1010
author_email="vishnu.chegondi@gmail.com",
1111
description="A simple browser to simplify complex selenium codes",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
url="https://github.com/vishnu-chegondi/web_tester",
14+
url="https://github.com/vishnu-chegondi/web_pilot",
1515
packages=setuptools.find_packages(),
1616
install_requires=[
1717
'selenium >= 3.13.0'
@@ -21,6 +21,6 @@
2121
"Programming Language :: Python :: 2.7",
2222
"Programming Language :: Python :: 3",
2323
"License :: OSI Approved :: MIT License",
24-
"Operating System :: OS Independent",
24+
"Operating System :: Windows",
2525
],
2626
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)