Update auth.md
Signed-off-by: Christopher Dunderdale <47271795+thatstatsguy@users.noreply.github.com>
This commit is contained in:
parent
b5e36583f6
commit
9727e1c69f
|
|
@ -296,15 +296,16 @@ context = browser.new_context(storage_state="state.json")
|
||||||
|
|
||||||
```csharp
|
```csharp
|
||||||
// Save storage state into the file.
|
// Save storage state into the file.
|
||||||
|
// Tests are executed in <TestProject>\bin\Debug\netX.0\ therefore relative path is used to reference playwright/.auth created in project root
|
||||||
await context.StorageStateAsync(new()
|
await context.StorageStateAsync(new()
|
||||||
{
|
{
|
||||||
Path = "state.json"
|
Path = "../../../playwright/.auth/state.json"
|
||||||
});
|
});
|
||||||
|
|
||||||
// Create a new context with the saved storage state.
|
// Create a new context with the saved storage state.
|
||||||
var context = await browser.NewContextAsync(new()
|
var context = await browser.NewContextAsync(new()
|
||||||
{
|
{
|
||||||
StorageStatePath = "state.json"
|
StorageStatePath = "../../../state.json"
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue