Selenium Webdriver Tutorial
Selected Reading
- Selenium WebDriver - Discussion
- Selenium WebDriver - Useful Resources
- Selenium WebDriver - Quick Guide
- Double Click
- Right Click
- Capture Screenshots
- Scroll Operations
- Chrome WebDriver Options
- JavaScript Executor
- Select Support
- Wait Support
- Headless Execution
- Executing Tests in Multiple Browsers
- Handling Checkboxes
- Read/Write data from Excel
- Generating HTML Test Reports in Python
- Color Support
- Handling Edit Boxes
- Handling Links
- Alerts
- Windows
- Drag and Drop
- Forms
- Create a Basic Test
- Action Class
- Exceptions
- Cookies
- Backward and Forward Navigation
- Pop-ups
- Explicit and Implicit Wait
- Identify Multiple Elements
- Identify Single Element
- Browser Navigation
- Installation
- Introduction
- Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Browser Navigation
Selenium Webdriver - Browser Navigation
我们可以在沙伦ium在沙尔富尔的网上浏览器的帮助下,开放浏览器和浏览器。 这种做法得到这种方法的帮助。 在使测试自动化的同时,我们创建的第一步是用URL启动申请。
The syntax of Selenium Webdriver is as follows -
driver.get("<url>") driver.get("https://www.tutorialspoint.com/index.htm")
要想找到一种方法,网络用户等到网页完全装满后才能进入下一步。 如果我们试图启用一个网页,上面有众多美国宇宙航空研究开发机构的电话,那么当网页完全装满时,网上用户就不知道。
为了解决这个问题,我们必须在法典中规定等待。
Code Implementation
se网络用户的代码实施如下:
from selenium import webdriver #set chromedriver.exe path driver = webdriver.Chrome(executable_path= ../drivers/chromedriver ) #url launch driver.get("https://www.tutorialspoint.com/questions/index.php") #get page title print( Page title: + driver.title) #quit browser driver.quit()
Output
产出显示信息——有退出代码的程序。 0. 这意味着,上述沙捞法成功执行。 另外,申请的页标题(从司机处获得)。 标题方法——最佳技术问题及答案在册。
Advertisements