# How to Get the Current Page URL in Playwright

To retrieve the URL of the current page in Playwright, use the `url()` method.
It doesn't return a promise so you can use it directly as shown below:

```javascript
const { test, expect } = require('@playwright/test');

test('has title', async ({ page }) => {
  await page.goto('https://playwright.dev/');

[highlight]
  console.log(page.url());
[/highlight]
});
```

Thanks for reading, and happy coding!

[summary]
## 🔭 Want to automate and scale your Playwright end-to-end tests?
Head over to [Better Stack](https://betterstack.com/website-monitoring) and start monitoring in 5 minutes.
[/summary]

[ad-uptime]