- WebdriverIO - Discussion
- WebdriverIO - Useful Resources
- WebdriverIO - Quick Guide
- Generate HTML reports from Allure
- Execute Tests with Mocha Options
- Running Tests from command-line parameters
- WebdriverIO - Data Driven Testing
- WebdriverIO - Running Tests in Parallel
- WebdriverIO - Waits
- WebdriverIO - JavaScript Executor
- WebdriverIO - Capturing Screenshots
- WebdriverIO - Debugging Code
- WebdriverIO - Alerts
- WebdriverIO - Scrolling Operations
- WebdriverIO - Multiple Windows/Tabs
- Chai Assertions on webelements
- WebdriverIO - Handling Radio Buttons
- WebdriverIO - Cookies
- WebdriverIO - Double Click
- WebdriverIO - Drag & Drop
- WebdriverIO - Frames
- WebdriverIO - Hidden Elements
- Handling Child Windows/Pop ups
- WebdriverIO - Mouse Operations
- Handling Checkboxes & Dropdowns
- WebdriverIO - Browser Navigation Commands
- WebdriverIO - Handling Browser Size
- WebdriverIO - General Browser Commands
- WebdriverIO - Happy Path Flow
- Expect Statement for Assertions
- WebdriverIO - Name Locator
- WebdriverIO - Class Name Locator
- WebdriverIO - Tag Name Locator
- WebdriverIO - ID Locator
- WebdriverIO - Link Text Locator
- WebdriverIO - CSS Locator
- WebdriverIO - Xpath Locator
- WebdriverIO - Wdio.conf.js file
- WebdriverIO - VS Code Intellisense
- WebdriverIO - Configuration File generation
- Selenium Standalone Server Installation
- WebdriverIO - Mocha Installation
- WebdriverIO - Package.json
- WebdriverIO - VS Code Installation
- WebdriverIO - Installation of NPM
- WebdriverIO - Getting Started with NodeJS
- WebdriverIO - Architecture
- WebdriverIO - Prerequisite
- WebdriverIO - Introduction
- WebdriverIO - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
WebdriverIO - General Browser Commands
网上浏览器使用的一些一般浏览器指挥列于下文:
browser.url(URL)
这一指挥系统用于发射作为参数通过URL的申请。
Syntax
The syntax is as follows -
browser.url( https://the-internet.herokuapp.com/redirector )
首先,遵循题为“快车道”的一章第1至5号步骤。
Step 5——建立光谱档案。 关于如何安装这些装置的细节见题为“Mocha装置”的章节。
// test suite name describe( Tutorialspoint apppcation , function(){ //test case it( Identify element with Id , function(){ // launch url browser.url( https://the-internet.herokuapp.com/redirector ) //identify element with id then cpck $("#redirect").cpck() //obtain page title console.log( Page title after cpck: + browser.getTitle()) }); });
browser.getTitle()
这一指挥系统用于获得目前浏览器发射的网页名称。 价值以示意图的形式退还。 该指挥部不接受任何参数。 如果该网页没有所有权,则将重划。
Syntax
The syntax is as follows -
browser.getTitle()
首先,遵循题为“Happy path flow with WebdriverIO”的一章第1至第5步,内容如下:
Step 5——建立光谱档案。 关于如何安装这些装置的细节见题为“Mocha装置”的章节。
// test suite name describe( Tutorialspoint Apppcation , function () { // test case name it( Get Page Title , function (){ // URL launching browser.url("https://www.tutorialspoint.com/about/about_careers.htm") //print page title in console console.log(browser.getTitle()) }); });
browser.getUrl()
这一指挥系统用于接收目前在浏览器上发射的一页的URL。 价值以示意图的形式退还。 该指挥部不接受任何参数。
Syntax
The syntax is as follows -
browser.getUrl()
首先,遵循题为“快车道”的一章第1至5号步骤。
Step 5——建立光谱档案。 关于如何安装这些装置的细节见题为“Mocha装置”的章节。
// test suite name describe( Tutorialspoint Apppcation , function () { // test case name it( Get Url , function (){ // URL launching browser.url("https://www.tutorialspoint.com/index.htm") //print URL in console console.log(browser.getUrl()) }); });
browser.getPageSource()
这一指挥系统用于接收目前浏览器发射的网页。 价值以示意图的形式退还。 该指挥部不接受任何参数。
Syntax
The syntax is as follows -
browser.getPageSource()
首先,遵循题为“快车道”的一章第1至5号步骤。
Step 5——建立光谱档案。 关于如何安装这些装置的细节见题为“Mocha装置”的章节。
// test suite name describe( Tutorialspoint Apppcation , function () { // test case name it( Get Page Source , function (){ // URL launching browser.url("https://www.tutorialspoint.com/index.htm") //print URL in console console.log(browser.getPageSource()) }); });
browser.maximizeWindow()
这一指挥被用来尽量扩大现有的浏览器窗口。
Syntax
The syntax is as follows -
browser.maximizeWindow()
首先,遵循题为“快车道”的一章第1至5号步骤。
Step 5——建立光谱档案。 关于如何安装这些装置的细节见题为“Mocha装置”的章节。
// test suite name describe( Tutorialspoint Apppcation , function () { // test case name it( Maximise Browser , function (){ // URL launching browser.url("https://www.tutorialspoint.com/questions/index.php") //maximize browser browser.maximizeWindow() }); });Advertisements