29 Jul 2022 02:14 PM
is there way how to select value from oracle db in javascrpt event ?
sub question is: how to add custom javascripot library without appending code itself into javascripot event
sub question2: is there list of javascript libraries suppported in javascript event ?
thank you
R
Solved! Go to Solution.
08 Aug 2022 09:57 PM
The simple answer is no.
As the name says - it's javascript code that gets executed in the browser. There is actually a way to include the 3rd party javascript library in the browser which executes the test, but it must not have native dependencies.
The best way to solve it is to develop a simple (REST) service which provides you with the values from DB. Then you can call this rest service from the synthetic test.
There is no list of javascript libraries - the synthetic engine uses a plain chrome browser except the synthetic API.