Install aws-cli
yay aws-cli-v2-binInstall aws-cli
yay aws-cli-v2-binJava
| /** | |
| * Convert the ResultSet to a List of Maps, where each Map represents a row with columnNames and columValues | |
| * @param rs | |
| * @return | |
| * @throws SQLException | |
| */ | |
| private List<Map<String, Object>> resultSetToList(ResultSet rs) throws SQLException { | |
| ResultSetMetaData md = rs.getMetaData(); | |
| int columns = md.getColumnCount(); | |
| List<Map<String, Object>> rows = new ArrayList<Map<String, Object>>(); |
| * [seleniumframework](http://www.seleniumframework.com/) | |
| * https://blog.testproject.io/ | |
| * http://www.seleniumtests.com/ | |
| * https://www.softwaretestingmaterial.com/ | |
| * https://www.swtestacademy.com/ | |
| * https://octoperf.com/blog/2018/03/22/api-testing-tools/ | |
| * automation testing hub.com |
| * [Extent Reports](http://extentreports.com/) | |
| * [Allure](http://allure.qatools.ru/) | |
| * [Real Time Report](https://github.com/startingwithseleniumwebdriver/RealTimeReport) | |
| * [GHPReport](http://ghpreporter.github.io/) | |
| * [Report Portal](http://reportportal.io/) | |
| * [GoReporter](https://github.com/360EntSecGroup-Skylar/goreporter) | |
| * [Clue Cucumber Report](https://github.com/trivago/cluecumber-report-plugin) | |
| * [Zafira](https://github.com/qaprosoft/zafira) |
| wget --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u171-b11/512cd62ec5174c3487ac17c61aaa89e8/jdk-8u171-linux-x64.rpm | |
| sudo yum localinstall jdk-8u171-linux-x64.rpm | |
| export JAVA_HOME=/usr/java/jdk1.8.0_171/ | |
| export JRE_HOME=/usr/java/jdk1.8.0_171/jre | |
| PATH=$PATH:$HOME/bin:$JAVA_HOME/bin | |
| export PATH |