diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed8ebf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__ \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..0d34fe7 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,11 @@ +# This configuration file was automatically generated by Gitpod. +# Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file) +# and commit this file to your remote git repository to share the goodness with others. + +tasks: + - init: pip install -r requirements.txt + command: nosetests lambdatest_test.py +vscode: + extensions: + - ms-python.python + diff --git a/README.md b/README.md index 831b0d9..57e5e42 100644 --- a/README.md +++ b/README.md @@ -1,63 +1,191 @@ -# Python-UnitTest-Selenium -![LambdaTest Logo](https://www.lambdatest.com/static/images/logo.svg) ---- - -### Environment Setup - -1. Global Dependencies - - -Windows - * Download the latest python installer for Windows: http://sourceforge.net/projects/pywin32/files/pywin32/ - * Run the installer and follow the setup wizard to install Python - - -Linux/Mac - * Run python --version to see which python version is currently installed, make sure it is 2.5.X or above. - * OS X, Ubuntu and most other Linux distro's come with Python pre-installed. - -2. Lambdatest Credentials - * Set LambdaTest username and access key in environment variables. It can be obtained from [LambdaTest dashboard](https://automation.lambdatest.com/) - example: - - For linux/mac - ``` - export LT_USERNAME="YOUR_USERNAME" - export LT_ACCESS_KEY="YOUR ACCESS KEY" - - ``` - - For Windows - ``` - set LT_USERNAME="YOUR_USERNAME" - set LT_ACCESS_KEY="YOUR ACCESS KEY" - - ``` -3. Setup - * Clone [Python-UnitTest-Selenium](https://github.com/LambdaTest/Python-UnitTest-Selenium.git) from GitHub. - * Navigate to the cloned directory - * Install project dependencies by running command `pip install -r requirements.txt` - -4. Running Tests - * To Start Test: - - Navigate to Python-UnitTest-Selenium - - Run following command - * Execution - ``` - $ python lambdatest_test.py or nosetests test_sample.py - ``` - -##### Routing traffic through your local machine -- Set tunnel value to `true` in test capabilities -> OS specific instructions to download and setup tunnel binary can be found at the following links. -> - [Windows](https://www.lambdatest.com/support/docs/display/TD/Local+Testing+For+Windows) -> - [Mac](https://www.lambdatest.com/support/docs/display/TD/Local+Testing+For+MacOS) -> - [Linux](https://www.lambdatest.com/support/docs/display/TD/Local+Testing+For+Linux) - -### Important Note: -Some Safari & IE browsers, doesn't support automatic resolution of the URL string "localhost". Therefore if you test on URLs like "http://localhost/" or "http://localhost:8080" etc, you would get an error in these browsers. A possible solution is to use "localhost.lambdatest.com" or replace the string "localhost" with machine IP address. For example if you wanted to test "http://localhost/dashboard" or, and your machine IP is 192.168.2.6 you can instead test on "http://192.168.2.6/dashboard" or "http://localhost.lambdatest.com/dashboard". +# Run Selenium Tests With UnitTest On LambdaTest + +![171934563-4806efd2-1154-494c-a01d-1def95657383 (1)](https://user-images.githubusercontent.com/70570645/172273386-fa9606ac-3e63-4b2e-8978-3142add3e038.png) + + +

+ Blog +   ⋅   + Docs +   ⋅   + Learning Hub +   ⋅   + Newsletter +   ⋅   + Certifications +   ⋅   + YouTube +

+  +  +  + +*Learn how to run your Python automation testing scripts using UnitTest on the LambdaTest platform* + +[](https://accounts.lambdatest.com/register) + + +## Table Of Contents + +* [Pre-requisites](#pre-requisites) +* [Run Your First Test](#run-your-first-test) +* [Local Testing With UnitTest](#testing-locally-hosted-or-privately-hosted-projects) + +## Prerequisites To Perform Unit testing In Python with Selenium + +Before you can start performing **Python** automation testing using **UnitTest**, you would need to: + +* Install the latest Python build from the [official website](https://www.python.org/downloads/). We recommend using the latest version. +* Make sure **pip** is installed in your system. You can install **pip** from [here](https://pip.pypa.io/en/stable/installation/). +* Download the latest **Selenium Client** and its **WebDriver bindings** from the [official website](https://www.selenium.dev/downloads/). Latest versions of **Selenium Client** and **WebDriver** are ideal for running your automation script on LambdaTest Selenium cloud grid. +* Install **virtualenv** which is the recommended way to run your tests. It will isolate the build from other setups you may have running and ensure that the tests run with the specified versions of the modules. + +```bash +pip install virtualenv +``` +### Installing Selenium Dependencies And Tutorial Repo + +**Step 1:** Clone the LambdaTest’s Python-UnitTest-Selenium repository and navigate to the code directory as shown below: +```bash +git clone https://github.com/LambdaTest/Python-UnitTest-Selenium +cd Python-UnitTest-Selenium +``` +**Step 2:** Create a virtual environment in your project folder the environment name is arbitrary. +```bash +virtualenv venv +``` +**Step 3:** Activate the environment. +```bash +source venv/bin/activate +``` +**Step 4:** Install the [required packages](https://github.com/LambdaTest/Python-UnitTest-Selenium/blob/master/requirements.txt) from the cloned project directory: + +```bash +pip install -r requirements.txt +``` +### Setting Up Your Authentication + +Make sure you have your LambdaTest credentials with you to run test automation scripts. You can get these credentials from the [LambdaTest Automation Dashboard](https://automation.lambdatest.com/build/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) or by your [LambdaTest Profile](https://accounts.lambdatest.com/login/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium). + +**Step 5:** Set LambdaTest **Username** and **Access Key** in environment variables. + +* For **Linux/macOS**: + + ```bash + export LT_USERNAME="YOUR_USERNAME" + export LT_ACCESS_KEY="YOUR ACCESS KEY" + ``` + * For **Windows**: + ```bash + set LT_USERNAME="YOUR_USERNAME" + set LT_ACCESS_KEY="YOUR ACCESS KEY" + ``` + +## Run Your First Test + +>**Test Scenario**: The [lambdatest_test.py](https://github.com/LambdaTest/pytest-selenium-sample/blob/master/tests/lt_sample_todo.py) sample script tests a simple to-do application with basic functionalities like mark items as done, add items in a list, calculate total pending items etc. + + +### Configuration of Your Test Capabilities + +**Step 6:** In the test script, you need to update your test capabilities. In this code, we are passing browser, browser version, and operating system information, along with LambdaTest Selenium grid capabilities via capabilities object. The capabilities object in the above code are defined as: + +```python +capabilities = { + "build": "UnitTest-Selenium-Sample", + "name": "UnitTest-Selenium-Test", + "platformName": "Windows 11", + "browserName": "Chrome", + "browserVersion": "latest", +} +``` +You can generate capabilities for your test requirements with the help of our inbuilt [Desired Capability Generator](https://www.lambdatest.com/capabilities-generator/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium). + +### Executing The Test + +**Step 7:** Please execute the command below to run your tests: +```bash +nosetests lambdatest_test.py +``` +Your test results would be displayed on the test console (or command-line interface if you are using terminal/cmd) and on LambdaTest automation dashboard. [LambdaTest Automation Dashboard](https://automation.lambdatest.com/build/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) will help you view all your text logs, screenshots and video recording for your entire automation tests. + +## Testing Locally Hosted Or Privately Hosted Projects + +You can test your locally hosted or privately hosted projects with LambdaTest Selenium grid using LambdaTest Tunnel. All you would have to do is set up an SSH tunnel using tunnel and pass toggle `tunnel = True` via desired capabilities. LambdaTest Tunnel establishes a secure SSH protocol based tunnel that allows you in testing your locally hosted or privately hosted pages, even before they are live. + +Refer our [LambdaTest Tunnel documentation](https://www.lambdatest.com/support/docs/testing-locally-hosted-pages/) for more information. + +Here’s how you can establish LambdaTest Tunnel. + +Download the binary file of: +* [LambdaTest Tunnel for Windows](https://downloads.lambdatest.com/tunnel/v3/windows/64bit/LT_Windows.zip) +* [LambdaTest Tunnel for macOS](https://downloads.lambdatest.com/tunnel/v3/mac/64bit/LT_Mac.zip) +* [LambdaTest Tunnel for Linux](https://downloads.lambdatest.com/tunnel/v3/linux/64bit/LT_Linux.zip) + +Open command prompt and navigate to the binary folder. + +Run the following command: + +```bash +LT -user {user’s login email} -key {user’s access key} +``` +So if your user name is lambdatest@example.com and key is 123456, the command would be: + +```bash +LT -user lambdatest@example.com -key 123456 +``` +Once you are able to connect **LambdaTest Tunnel** successfully, you would just have to pass on tunnel capabilities in the code shown below : + +**Tunnel Capability** + +``` +"tunnel" : true +``` + +## Documentation & Resources :books: + + +Visit the following links to learn more about LambdaTest's features, setup and tutorials around test automation, mobile app testing, responsive testing, and manual testing. + +* [LambdaTest Documentation](https://www.lambdatest.com/support/docs/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) +* [LambdaTest Blog](https://www.lambdatest.com/blog/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) +* [LambdaTest Learning Hub](https://www.lambdatest.com/learning-hub/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) + +## LambdaTest Community :busts_in_silhouette: + +The [LambdaTest Community](https://community.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) allows people to interact with tech enthusiasts. Connect, ask questions, and learn from tech-savvy people. Discuss best practises in web development, testing, and DevOps with professionals from across the globe 🌎 + +## What's New At LambdaTest ❓ + +To stay updated with the latest features and product add-ons, visit [Changelog](https://changelog.lambdatest.com/) + ## About LambdaTest -[LambdaTest](https://www.lambdatest.com/) is a cloud based selenium grid infrastructure that can help you run automated cross browser compatibility tests on 2000+ different browser and operating system environments. LambdaTest supports all programming languages and frameworks that are supported with Selenium, and have easy integrations with all popular CI/CD platforms. It's a perfect solution to bring your [selenium automation testing](https://www.lambdatest.com/selenium-automation) to cloud based infrastructure that not only helps you increase your test coverage over multiple desktop and mobile browsers, but also allows you to cut down your test execution time by running tests on parallel. +[LambdaTest](https://www.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) is a leading test execution and orchestration platform that is fast, reliable, scalable, and secure. It allows users to run both manual and automated testing of web and mobile apps across 3000+ different browsers, operating systems, and real device combinations. Using LambdaTest, businesses can ensure quicker developer feedback and hence achieve faster go to market. Over 500 enterprises and 1 Million + users across 130+ countries rely on LambdaTest for their testing needs. + +### Features + +* Run Selenium, Cypress, Puppeteer, Playwright, and Appium automation tests across 3000+ real desktop and mobile environments. +* Real-time cross browser testing on 3000+ environments. +* Test on Real device cloud +* Blazing fast test automation with HyperExecute +* Accelerate testing, shorten job times and get faster feedback on code changes with Test At Scale. +* Smart Visual Regression Testing on cloud +* 120+ third-party integrations with your favorite tool for CI/CD, Project Management, Codeless Automation, and more. +* Automated Screenshot testing across multiple browsers in a single click. +* Local testing of web and mobile apps. +* Online Accessibility Testing across 3000+ desktop and mobile browsers, browser versions, and operating systems. +* Geolocation testing of web and mobile apps across 53+ countries. +* LT Browser - for responsive testing across 50+ pre-installed mobile, tablets, desktop, and laptop viewports + + +[](https://accounts.lambdatest.com/register) + + + +## We are here to help you :headphones: -### Resources +* Got a query? we are available 24x7 to help. [Contact Us](support@lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) +* For more info, visit - [LambdaTest](https://www.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=python-unittest-selenium) -##### [SeleniumHQ Documentation](http://www.seleniumhq.org/docs/) -##### [UnitTest Documentation](https://docs.python.org/2/library/unittest.html) diff --git a/dashboard.png b/dashboard.png new file mode 100644 index 0000000..bbaa42b Binary files /dev/null and b/dashboard.png differ diff --git a/lambdatest_test.py b/lambdatest_test.py index 36d894a..663d76b 100644 --- a/lambdatest_test.py +++ b/lambdatest_test.py @@ -2,27 +2,46 @@ import unittest import sys from selenium import webdriver +from selenium.webdriver.chrome.options import Options as ChromeOptions +from selenium.webdriver.edge.options import Options as EdgeOptions +from selenium.webdriver.common.by import By username = os.environ.get("LT_USERNAME") access_key = os.environ.get("LT_ACCESS_KEY") + class FirstSampleTest(unittest.TestCase): # setUp runs before each test case def setUp(self): - desired_caps = { - "build": 'unittest sample build', - "name": 'Py-unittest', - "platform": 'Windows 10', - "browserName": 'firefox', - "version": '73' + lt_options = { + "user": username, + "accessKey": access_key, + "build": "UnitTest-Selenium-Sample", + "name": "UnitTest-Selenium-Test", + "platformName": "MacOS Ventura", + "w3c": True, + "browserName": "Edge", + "browserVersion": "latest-2", + "selenium_version": "4.8.0" } + + browser_options = EdgeOptions() + browser_options.set_capability('LT:Options', lt_options) + + # Steps to run Smart UI project (https://beta-smartui.lambdatest.com/) + # Step - 1 : Change the hub URL to @beta-smartui-hub.lambdatest.com/wd/hub + # Step - 2 : Add "smartUI.project": "" as a capability above + # Step - 3 : Run "driver.execute_script("smartui.takeScreenshot")" command wherever you need to take a screenshot + # Note: for additional capabilities navigate to https://www.lambdatest.com/support/docs/test-settings-options/ + self.driver = webdriver.Remote( - command_executor="http://{}:{}@hub.lambdatest.com:80/wd/hub".format(username, access_key), - desired_capabilities= desired_caps) + command_executor="http://hub.lambdatest.com:80/wd/hub", + options=browser_options) # tearDown runs after each test case + def tearDown(self): self.driver.quit() @@ -34,24 +53,29 @@ def test_unit_user_should_able_to_add_item(self): driver.get("https://lambdatest.github.io/sample-todo-app/") # Click on check box - check_box_one = driver.find_element_by_name("li1") + check_box_one = driver.find_element(By.NAME,"li1") check_box_one.click() # Click on check box - check_box_two = driver.find_element_by_name("li2") + check_box_two = driver.find_element(By.NAME,"li2") check_box_two.click() + #Take Smart UI screenshot + #driver.execute_script("smartui.takeScreenshot") + # Enter item in textfield - textfield = driver.find_element_by_id("sampletodotext") + textfield = driver.find_element(By.ID,"sampletodotext") textfield.send_keys("Yey, Let's add it to list") # Click on add button - add_button = driver.find_element_by_id("addbutton") + add_button = driver.find_element(By.ID,"addbutton") add_button.click() # Verified added item - added_item = driver.find_element_by_xpath("//span[@class='done-false']").text - print (added_item) + added_item = driver.find_element(By.XPATH, + "//span[@class='done-false']").text + print(added_item) + if __name__ == "__main__": unittest.main() diff --git a/requirements.txt b/requirements.txt index 48fe85a..1b82f10 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ ConfigParser -selenium>2.5 +selenium<=4.9.0 pytest nose pytest-xdist pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy