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

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -