Hi @bvcxtds
You can define a variable and pass it into a fixture as page
function argument, but all tests will start only on variable initial value. Example:
let myVar = 'http://example.com';
fixture `Sample`
.page `${myVar}`
test('test1', async t => {
myVar = 'https://whatwg.org';
});
test('test2', async t => { // It will start on "http://example.com"
await t.navigateTo(`${myVar}`); // But we can use new value this way
});
In a nutshell it compiles once, so explain your scenario in details please, so that we can suggest solution for you.