api - Changing urls in Selenium IDE -
i want able test multiple tabs selenium ide. mean having 1 tab trigger in other tab , document using selenium. have code written in nodejs creates api login:
app.get('/login', function (req, res) { console.log(req.query) login({username:req.query.username, password:req.query.password}).then((result) => { return res.send(result) }) }) app.listen(3000, function () { console.log('example app listening on port 3000!') })
i wan create multiple of these apis , load them on after in selenium trigger event , record test.
Comments
Post a Comment