Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LAB4] 512558012 #606

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 19 additions & 17 deletions lab4/main_test.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
const puppeteer = require('puppeteer');

(async () => {
// Launch the browser and open a new blank page
const browser = await puppeteer.launch();
const page = await browser.newPage();
describe('Puppeteer lab test', () => {
it('should search for chipi chipi chapa chapa and print the title of the first result in Docs section', async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://pptr.dev/');

// Navigate the page to a URL
await page.goto('https://pptr.dev/');
// 在搜索框中輸入 "chipi chipi chapa chapa"
await page.type('input[name="search"]', 'chipi chipi chapa chapa');

// Hints:
// Click search button
// Type into search box
// Wait for search result
// Get the `Docs` result section
// Click on first result in `Docs` section
// Locate the title
// Print the title
// 等待搜索結果加載並點擊 Docs 部分的第一個結果
await page.waitForSelector('.algolia-docsearch-suggestion--title');
const firstResult = await page.$('.algolia-docsearch-suggestion--title');
await firstResult.click();

// Close the browser
await browser.close();
})();
// 等待頁面加載並打印標題
await page.waitForSelector('h1');
const title = await page.$eval('h1', element => element.textContent);
console.log('Title:', title);

await browser.close();
});
});
Loading