Intelligent & Powerful Cloud Native Selenium
Project description
selenium pro - intelligent & powerful cloud native selenium
Benefits of selenium-pro over selenium
- All the capabilities of Selenium +
- Auto write scripts using Selenium Script Generator
- No Inspection of HTML Elements required
- Intelligent Element Handling Automatically in case of HTML changes
- Auto Setup Chromedrivers based on Operating System & Browser versions
- Run scripts in Cloud with single function call
- Bypass Automated Browser Detection
- Coming Up - Convert your old selenium scripts to selenium pro so that they never fail due to element errors
Selenium Pro Auto Code Generator Chrome Extension
Installation
pip install selenium-pro
Import
from selenium_pro.webdriver.common.keys import Keys
from selenium_pro import webdriver
Start Browser
driver = webdriver.Start()
Example 1
It searches a keyword on google
from selenium_pro.webdriver.common.keys import Keys
from selenium_pro import webdriver
driver = webdriver.Start()
driver.get('https://www.google.com/')
driver.find_element_by_pro('QYQyyPtidm5_xqG').click()
driver.switch_to.active_element.send_keys('shoes')
driver.switch_to.active_element.send_keys(Keys.ENTER)
Example 2
It fetches the titles of packages on pypi
from selenium_pro.webdriver.common.keys import Keys
from selenium_pro import webdriver
driver = webdriver.Start()
driver.get("https://pypi.org/search/?q=firebase")
title_elements=driver.find_elements_by_pro("ErZwU_jOEg0s4_9")
for ele in title_elements:
print(ele.text)
driver.quit()
Find Elements By Pro
- This is one of the advanced methods added in this library aside from the conventional methods in selenium.
- This method finds element without you having to mention selectors or locators
- Also this ensures that whenever HTML element changes, its able to adapt to changes & work fine without you having to do any code change
- Use this Selenium Pro Auto Code Generator Chrome Extension to get pro-id for any element on the web
Webdriver-Start
- This method will check your operating system, default browser & its version & install driver accordingly
- You can still use conventional methods if you want specific configuration
All Default Selenium Functions Work Well
#find elements by conventional methods
driver.find_elements(By.XPATH, '//button')
#close window
driver.close()
#set cookies in browser
driver.add_cookie({})
....
All your selenium scripts will work fine with selenium pro. Just import selenium pro instead
Complete Selenium Documentation Available here
Selenium Python Docs
Contact Us
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
selenium_pro-1.0.6.tar.gz
(824.6 kB
view hashes)