url
url
कमांड ब्राउज़र में एक URL लोड करता है। यदि कॉन्फ़िग में एक baseUrl निर्दिष्ट किया गया है, तो वह node के url.resolve() विधि का उपयोग करके url पैरामीटर के साथ जोड़ दिया जाएगा। अंतिम बार की तरह ही एक ही url के साथ browser.url('...')
को कॉल करने से पृष्ठ रीलोड होगा। हालांकि, यदि url में एक हैश शामिल है, तो ब्राउज़र एक नई नेविगेशन को ट्रिगर नहीं करेगा और उपयोगकर्ता को refresh का उपयोग करके पृष्ठ को ट्रिगर करना होगा।
कमांड एक WebdriverIO.Request
ऑब्जेक्ट लौटाता है जिसमें पेज लोड के अनुरोध और प्रतिक्रिया डेटा के बारे में जानकारी होती है:
interface WebdriverIO.Request {
id?: string
url: string
timestamp: number
navigation?: string
redirectChain?: string[],
headers: Record<string, string>
cookies?: NetworkCookie[]
\/**
* Error message if request failed
*\/
error?: string
response?: {
fromCache: boolean
headers: Record<string, string>
mimeType: string
status: number
},
/**
* List of all requests that were made due to the main request.
* Note: the list may be incomplete and does not contain request that were
* made after the command has finished.
*
* The property will be undefined if the request is not a document request
* that was initiated by the browser.
*\/
children?: Request[]
}
यह कमांड निम्नलिखित विकल्पों का समर्थन करता है:
wait
अनुरोधित संसाधन की वांछित स्थिति जिसमें कमांड समाप्त होने से पहले होना चाहिए। यह निम्नलिखित अवस्थाओं का समर्थन करता है:
none
: पृष्ठ अनुरोध किए जाने और प्रतिक्रिया प्राप्त होने के बाद कोई इंतजार नहींinteractive
: पृष्ठ के इंटरैक्टिव होने तक इंतजार करेंcomplete
: पृष्ठ के DOM ट्री के पूरी तरह से लोड होने तक इंतजार करेंnetworkIdle
: तब तक इंतजार करें जब तक कोई लंबित नेटवर्क अनुरोध न हों
headers
अनुरोध के साथ भेजे जाने वाले हेडर्स।
Default: {}
auth
बेसिक ऑथेंटिकेशन क्रेडेंशियल्स।
नोट: यह मौजूदा Authorization
हेडर को ओवरराइट कर देगा अगर headers
विकल्प में प्रदान किया गया है।
timeout
यदि एक संख्या पर सेट किया गया है, तो कमांड वापस आने से पहले पृष्ठ को सभी प्रतिक्रियाओं को लोड करने के लिए निर्दिष्ट मिलीसेकंड तक इंतजार करेगा।
नोट: इसका प्रभाव होने के लिए, wait
विकल्प को networkIdle
पर सेट करना आवश्यक है।
Default: 5000
उपयोग
browser.url(url, { wait, timeout, onBeforeLoad, auth, headers })
पैरामीटर्स
नाम | प्रकार | विवरण |
---|---|---|
url वैकल्पिक | string | नेविगेट करने के लिए URL |
options वैकल्पिक | UrlOptions | नेविगेशन विकल्प |
options.wait वैकल्पिक | 'none', 'interactive', 'networkIdle', 'complete' | अनुरोधित संसाधन की वांछित स्थिति जिसमें कमांड समाप्त होने से पहले होना चाहिए। डिफ़ॉल्ट: 'complete' |
options.timeout वैकल्पिक | number | यदि एक संख्या पर सेट किया गया है, तो कमांड वापस आने से पहले पृष्ठ को सभी प्रतिक्रियाओं को लोड करने के लिए निर्दिष्ट मिलीसेकंड तक इंतजार करेगा। डिफ़ॉल्ट: 5000 |
options.onBeforeLoad वैकल्पिक | Function | एक फंक्शन जो आपके पेज के सभी संसाधनों को लोड करने से पहले कॉल किया जाता है। यह आपको आसानी से वातावरण को मॉक करने की अनुमति देता है, जैसे उन वेब API को ओवरराइट करना जिन्हें आपका एप्लिकेशन उपयोग करता है। |
options.auth वैकल्पिक | {user: string, pass: string} | बेसिक ऑथेंटिकेशन क्रेडेंशियल्स |
options.headers वैकल्पिक | Record<string, string> | अनुरोध के साथ भेजे जाने वाले हेडर्स |
उदाहरण
// navigate to a new URL
const request = await browser.url('https://webdriver.io');
// log url
console.log(request.url); // outputs: "https://webdriver.io"
console.log(request.response?.status); // outputs: 200
console.log(request.response?.headers); // outputs: { 'content-type': 'text/html; charset=UTF-8' }
// With a base URL of http://example.com/site, the following url parameters resolve as such:
// When providing a scheme:
// https://webdriver.io
await browser.url('https://webdriver.io');
// When not starting with a slash, the URL resolves relative to the baseUrl
// http://example.com/site/relative
await browser.url('relative');
// When starting with a slash, the URL resolves relative to the root path of the baseUrl
// http://example.com/rootRelative
await browser.url('/rootRelative');
// navigate to a URL with basic authentication
await browser.url('https://the-internet.herokuapp.com/basic_auth', {
auth: {
user
pass
}
});
await expect($('p=Congratulations! You must have the proper credentials.').toBeDisplayed();
// navigate to a URL and mock the battery API
await browser.url('https://pazguille.github.io/demo-battery-api/', {
onBeforeLoad (win) {
// mock "navigator.battery" property
// returning mock charge object
win.navigator.getBattery = () => Promise.resolve({
level: 0.5,
charging: false,
chargingTime: Infinity,
dischargingTime: 3600, // seconds
})
}
})
// now we can assert actual text - we are charged at 50%
await expect($('.battery-percentage')).toHaveText('50%')
// and has enough juice for 1 hour
await expect($('.battery-remaining')).toHaveText('01:00)
रिटर्न
- <WebdriverIO.Request>
returns
: पेज लोड का एक अनुरोध ऑब्जेक्ट जिसमें अनुरोध और प्रतिक्रिया डेटा के बारे में जानकारी है