Skip to content

Instantly share code, notes, and snippets.

View paulouskin's full-sized avatar

Ivan Paulouski paulouskin

View GitHub Profile
@paulouskin
paulouskin / SQA-051
Last active October 17, 2022 07:28
<properties>
<compile.java.version>17</compile.java.version>
<compiler.plugin.version>3.8.1</compiler.plugin.version>
<surefire.plugin.version>2.22.2</surefire.plugin.version>
<failsafe.plugin.version>2.22.2</failsafe.plugin.version>
<junit.version>5.5.2</junit.version>
<junit.platform.version>1.5.2</junit.platform.version>
<selenium.version>4.1.3</selenium.version>
<cucumber.version>6.9.1</cucumber.version>
<slf4j.version>1.7.30</slf4j.version>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>${selenium.version}</version>
</dependency>
https://www.sqlite.org/download.html - download sqlite and sqlite tools precompiled binaries for windows
https://bitbucket.org/xerial/sqlite-jdbc/downloads/ - download sqlite jdbc last version and put it to JMeter lib folder (restart JMeter)
http://www.sqlitetutorial.net/sqlite-sample-database/ - download sqlite sample db to sqlite folder
https://www.sqlite.org/cli.html - command reference
1) In sqlite folder run cmd and execute sqlite command
2) .open <db_name> - load db to memory
3) .tables - to check loaded table
Database URL for JMEter JDBC config: jdbc:sqlite: + path to db
@paulouskin
paulouskin / EtsyComSample.feature
Last active October 1, 2018 07:12
Cucumber + Selenium with Etsy.com
Feature: Search for items on Etsy
As a user
I want to search for different items
So that I will be able to buy necessary items fast
Scenario: Search for particular item
Given I am on the main page
When I accept terms and conditions
And I search for "handmade paper toy" items
Then I see search results
https://www.youtube.com/channel/UCTt7pyY-o0eltq14glaG5dg
https://www.guru99.com/selenium-tutorial.html
https://www.baeldung.com/tag/mockito/
@paulouskin
paulouskin / gist:9890ed08628aa82e7e4f57c314a0448f
Last active September 24, 2018 08:55
Selenium usefull info and homework
************GitHub*********************
https://github.com/paulouskin/selenium-testng/tree/selenium-introduction
***********************************************
*********************BOOKS**************
https://www.safaribooksonline.com/library/view/selenium-webdriver-3/9781788999762/
https://www.safaribooksonline.com/library/view/selenium-testing-tools/9781784392512/
https://www.safaribooksonline.com/library/view/mastering-selenium-webdriver/9781788299671/
All video courses about Selenium 2016-2018 on safaribooksonline
http://www.seleniumeasy.com/selenium-tutorials/page-factory-pattern-in-selenium-webdriver
https://www.w3schools.com/xml/xpath_syntax.asp
*************links*************8
https://www.safaribooksonline.com/library/view/pragmatic-unit-testing/9781680500769/
https://www.safaribooksonline.com/library/view/mastering-software-testing/9781787285736/
junit 5 videos by Boni Garcia on safaribooks
***********repo*****************8
https://github.com/paulouskin/selenium_start/tree/todolist_tdd
********************************