diff --git a/README.md b/README.md index f207679..a893a71 100644 --- a/README.md +++ b/README.md @@ -1,207 +1,115 @@ -

Smart UI Testing With Selenium Python

- - - - +# Run SmartUI Visual Tests with Python on TestMu AI (Formerly LambdaTest)

- Blog -   ⋅   - Docs -   ⋅   - Learning Hub -   ⋅   - Newsletter -   ⋅   - Certifications -   ⋅   - YouTube + Made by TestMu AI + Selenium version + Community

-  -  -  - -*Learn the how to get started with Smart UI testing with Selenium Python on the LambdaTest platform with SmartUI* - -[](https://accounts.lambdatest.com/register?utm_source=github&utm_medium=repo&utm_campaign=playwright-sample) - -## Table of Contents: +## Getting Started -* [Pre-requisites](#pre-requisites) -* [Running Your First Selenium Python Test](#running-your-first-selenium-python-test) -* [Setting Up GitHub App Integration With SmartUI](#setting-up-github-app-integration-with-smartui) +[TestMu AI](https://www.testmuai.com/) (Formerly LambdaTest) is the world's first full-stack AI Agentic Quality Engineering platform that empowers teams to test intelligently, smarter, and ship faster. Built for scale, it offers a full-stack testing cloud with 10K+ real devices and 3,000+ browsers. With AI-native test management, MCP servers, and agent-based automation, TestMu AI supports Selenium, Appium, Playwright, and all major frameworks. -## Pre-requisites +With TestMu AI (Formerly LambdaTest), you can run SmartUI visual regression tests with Python and Selenium on real browsers. This sample shows how to configure Python + Selenium + SmartUI to run on the TestMu AI cloud. -1. In order to run your Smart UI tests with Selenium Python, you will need to set your LambdaTest username and access key in the environment variables. Click the **Access Key** button at the top-right of the Automation Dashboard to access it. +- [Sign up on TestMu AI](https://www.testmuai.com/register/) (Formerly LambdaTest). +- Follow the [TestMu AI Documentation](https://www.testmuai.com/support/docs/) for the full setup walkthrough. -![Screenshot 2023-04-18 132921](https://user-images.githubusercontent.com/126776938/232711334-676f1895-d223-4ee2-9bff-d82837715520.png) +### Prerequisites +- Python 3 and pip (latest stable). Node.js (for SmartUI CLI) +- A TestMu AI (Formerly LambdaTest) account with your username and access key +### Setup +Clone and install dependencies: -**Windows** - -```js -set LT_USERNAME="YOUR_USERNAME" -set LT_ACCESS_KEY="YOUR ACCESS KEY" -``` - -**macOS/Linux** - -```js -export LT_USERNAME="YOUR_USERNAME" -export LT_ACCESS_KEY="YOUR ACCESS KEY" +```bash +git clone https://github.com/LambdaTest/smartui-python-sample && cd smartui-python-sample +pip install -r requirements.txt ``` -2. To create a `New Project` using the SmartUI Web Application, click the **New Project** button in the top-right corner of your dashboard. - -![Screenshot 2023-04-18 133652](https://user-images.githubusercontent.com/126776938/232756183-051fc7b4-f923-410c-8168-78e44597fdc7.png) - -3. Fill in the specifications such as **Platform**, **Project Name**, **Approvers**, and **Tags** as per your requirement and click **Create Project**. +Set your credentials as environment variables. -![Screenshot 2023-04-18 134121](https://user-images.githubusercontent.com/126776938/232714262-56ae0be3-3ba3-4ba3-8e82-2f063657fcaf.png) +**macOS / Linux:** -4. Install `pip` and Python. - -``` -sudo apt install python-pip -sudo apt install python -``` - -5. The recommended way to run your tests would be in `virtualenv`. 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 specified in the `requirements.txt` file. - -``` -pip install virtualenv +```bash +export LT_USERNAME="YOUR_USERNAME" +export LT_ACCESS_KEY="YOUR_ACCESS_KEY" +export LT_TUNNEL="YOUR_TUNNEL_NAME" +export PROJECT_TOKEN="YOUR_PROJECT_TOKEN" ``` -## Running Your First Selenium Python Test - -1. To get started, clone the `Python-Selenium-Sample` Repository. +**Windows:** -``` -git clone https://github.com/LambdaTest/smartui-python-sample +```bash +set LT_USERNAME="YOUR_USERNAME" +set LT_ACCESS_KEY="YOUR_ACCESS_KEY" +set LT_TUNNEL="YOUR_TUNNEL_NAME" +set PROJECT_TOKEN="YOUR_PROJECT_TOKEN" ``` -2. Next, create and activate the virtual environment in the `Python-Selenium-Sample` folder. +### Run tests -``` -virtualenv venv -source venv/bin/activate -``` -3. Inside the `Python-Selenium-Sample` folder, export the `LambdaTest Credentials`. You can get these from your automation dashboard. - -4. To run your first test, run the below given command. -``` -python test.py +```bash +pytest ``` -## Setting Up Github App Integration with SmartUI +View results on your TestMu AI dashboard. -### Steps 1: Integrate the your Lambdatest Account with GitHub App. +### Local testing with TestMu AI Tunnel -You can integrate your LambdaTest account with the GiHub application in the following ways: +To test locally hosted apps, set up the TestMu AI tunnel. OS-specific guides: -- Using OAuth +- [Local Testing on Windows](https://www.testmuai.com/support/docs/local-testing-for-windows/) +- [Local Testing on macOS](https://www.testmuai.com/support/docs/local-testing-for-macos/) +- [Local Testing on Linux](https://www.testmuai.com/support/docs/local-testing-for-linux/) -![github-app-landing-92ef6e152a7302cb9ab88f5034b9ec0c](https://user-images.githubusercontent.com/126776938/232715867-f375b4df-1bc9-4e88-8340-44e986be2e9a.png) +Add the following to your capabilities: -### Step 2: Select your GitHub repository - -Go to your GitHub repository where you want to configure your SmartUI project. Check out our GitHub sample [here](https://github.com/LambdaTest/smartui-node-sample). - -### Step 3: Configure your test suite - -Add the `Github` capability to your current test configuration: - -```bash -const capabilities: { - platform: "Windows 10", - browserName: "chrome", - version: "latest", - "smartUI.project": "Smart UI sample test", - github: { - "url": "https://api.github.com/repos/OWNER/REPO/statuses/commitId", // Mandatory - "owner": "{OWNER}", //Optional - "repo": "{REPO}", //Optional - "commit": "{commitId}" //Optional - } -} +```python +"tunnel": True ``` -### Step 4: Setting up your CI configuration - -Setting up your CI workflow to execute on GitHub. Here is an example setup with `GitHub Actions`: +## Contributions -Go to `.github/workflows/.yml`. +Contributions are welcome. Open an issue to discuss your idea before submitting a pull request. When reporting bugs, include your Python version, OS, and Selenium version. -```bash - name: Execute SmartUI Test with Github App Integration - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - - name: Create commit status - run: | - API_HOST=https://api.github.com - # Check out the PR branch - git checkout $GITHUB_HEAD_REF - # Get the commit ID of the last commit - COMMIT_ID=$(git rev-parse HEAD) - echo "Last commit ID of PR: $COMMIT_ID" - GITHUB_URL=$API_HOST/repos/$GITHUB_REPOSITORY/statuses/$COMMIT_ID - echo "GITHUB_URL: $GITHUB_URL" - echo "GITHUB_URL=$GITHUB_URL" >> $GITHUB_ENV -``` +## TestMu AI (Formerly LambdaTest) Community -### Step5: Execute your test suite with CI +Connect with testers and developers in the [TestMu AI Community](https://community.testmuai.com/). Ask questions, share what you are building, and discuss best practices in test automation and DevOps. + +## TestMu AI (Formerly LambdaTest) Certifications -After the setup is completed, you can now execute your test suite with the Continuos Integration (CI) pipeline with any tool of your choice. +Earn free [TestMu AI Certifications](https://www.testmuai.com/certifications/) for testers, developers, and QA engineers. Validate your skills in Selenium, Cypress, Playwright, Appium, Espresso and more. Industry-recognized, shareable on LinkedIn, and built by practitioners, not marketers. -### Step 6: Commit you changes over git on a branch and raise the PR to main branch. +## Learning Resources by TestMu AI (Formerly LambdaTest) -### Step 7: Now you will see the `lambdatest-smartui-app` in the PR. +Learn modern testing through tutorials, guides, videos, and weekly updates: +* [TestMu AI Blog](https://www.testmuai.com/blog/) +* [TestMu AI Learning Hub](https://www.testmuai.com/learning-hub/) +* [TestMu AI on YouTube](https://www.youtube.com/@TestMuAI) +* [TestMu AI Newsletter](https://www.testmuai.com/newsletter/) + +## LambdaTest is Now TestMu AI -## 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. +On **January 12, 2026**, [LambdaTest evolved to TestMu AI](https://www.testmuai.com/lambdatest-is-now-testmuai/), the world's first fully autonomous **Agentic AI Quality Engineering Platform**. -* [LambdaTest Documentation](https://www.lambdatest.com/support/docs/?utm_source=github&utm_medium=repo&utm_campaign=playwright-sample) -* [LambdaTest Blog](https://www.lambdatest.com/blog/?utm_source=github&utm_medium=repo&utm_campaign=playwright-sample) -* [LambdaTest Learning Hub](https://www.lambdatest.com/learning-hub/?utm_source=github&utm_medium=repo&utm_campaign=playwright-sample) +Same team. Same infrastructure. Same customer accounts. All existing LambdaTest logins, scripts, capabilities, and integrations continue to work without change. -## LambdaTest Community :busts_in_silhouette: +ð Find the new home for [LambdaTest](https://www.testmuai.com). -The [LambdaTest Community](https://community.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=playwright-sample) 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 🌎 +### How LambdaTest Evolved into TestMu AI -## What's New At LambdaTest ❓ +In 2017, we launched LambdaTest with a simple mission: make testing fast, reliable, and accessible. As LambdaTest grew, we expanded into Test Intelligence, Visual Regression Testing, Accessibility Testing, API Testing, and Performance Testing, covering the full depth of the testing lifecycle. -To stay updated with the latest features and product add-ons, visit [Changelog](https://changelog.lambdatest.com/) - -## About LambdaTest +As software development entered the AI era, testing had to evolve, too. We rebuilt the architecture to be AI-native from the ground up, with autonomous agents that **plan, author, execute, analyze, and optimize tests** while keeping humans in the loop. The platform integrates with your repos, CI, IDEs, and terminals, continuously learning from every code change and development signal. -[LambdaTest](https://www.lambdatest.com?utm_source=github&utm_medium=repo&utm_campaign=playwright-sample) is an intelligent unified digital experience testing cloud that helps businesses drastically reduce time to market through faster test execution, ensuring quality releases and accelerated digital transformation. The platforms allows you to perform both real time and automation testing across 3000+ environments and real mobile devices, making it a top choice among other cloud testing platforms. Over 10,000+ enterprise customers and 2+ million users across 130+ countries rely on LambdaTest for their testing needs. +That evolution earned a new name: **TestMu AI**, built for an AI-first future of quality engineering. TestMu is not a new name for us. It is the name of our annual community conference, which has brought together 100,000+ quality engineers to discuss how AI would reshape testing, long before that became an industry norm. -### Features +What started as a high-performance cloud testing platform has transformed into an AI-native, multi-agent system powering a connected, end-to-end quality layer. That evolution defined a new identity: LambdaTest evolved into TestMu AI, built for an AI-first future of quality engineering. -* 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?utm_source=github&utm_medium=repo&utm_campaign=playwright-sample) - -## We are here to help you :headphones: +## Support -* Got a query? we are available 24x7 to help. [Contact Us](mailto:support@lambdatest.com) -* For more info, visit - [LambdaTest](https://www.lambdatest.com/?utm_source=github&utm_medium=repo&utm_campaign=playwright-sample) +Got a question? Email [support@testmuai.com](mailto:support@testmuai.com) or chat with us 24x7 from our chat portal.