So – you need to redirect to a dynamic page in TestCafe you say? Try the below
const setValue = ClientFunction(() => {
var idToUseForRedirection=document.querySelector(‘input[name=”ID”]’).value;
document.location.href=”https://someurl.com?id=” + idToUseForRedirection;});
await setValue();
|
Written By Steve French |
Leave a Reply