-
Perform Web Testing on 2000+ Browsers & OSPricing:
- Open Source
- Freemium
- Free Trial
- $15.0 / Monthly
#Project Management #Website Testing #Webapp Testing 10 social mentions
-
The Internet privacy company that empowers you to seamlessly take control of your personal information online, without any tradeoffs.Pricing:
- Open Source
# Demonstration of send_keys using search on DuckDuckGo Import unittest From selenium import webdriver Import time From time import sleep # Import the ActionChains class From selenium.webdriver.common.action_chains import ActionChains Class SeachTest(unittest.TestCase): def setUp(self): # Creation of Opera WebDriver instance self.driver = webdriver.Chrome() def test_Search(self): driver = self.driver driver.maximize_window() driver.get("https://duckduckgo.com/") # Send search keyboard to the Text Box element on DuckDuckGo driver.find_element_by_id("search_form_input_homepage") ActionChains(driver) \ .send_keys("Lambdatest") \ .perform() sleep(5) def tearDown(self): # Close the browser. self.driver.close() If __name__ == '__main__': unittest.main().
#Search Engine #Web Search #Internet Search 1788 social mentions