Skip to content

Commit

Permalink
Doing second test (#3)
Browse files Browse the repository at this point in the history
* еÑtest: add two tests to check the title on the reviews page

* вÑdocs: Add еÑthescription to theREADME.md
  • Loading branch information
08AlimDuiL authored Dec 12, 2023
1 parent 0b6f57f commit 3a64662
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,8 @@
Этот репозиторий содержит автотесты для открытого проекта **!простоSтудия**, который
разрабатывается в рамках практики от [PINEAPPLE PRACTICE](https://pnpl.site)

Пока сайт тестируетс локально 🤫🤷‍♀️. Но скоро состоится деплой 💪✊🤩
Также можно посмотреть документацию [вот здесь 👉](https://github.com/08AlimDuiL/justeLeStudioDocs)

Тестирование пишется от простого к сложному))

Пока сайт тестируетс локально 🤫🤷‍♀️. Но скоро состоится деплой 💪✊🤩
3 changes: 1 addition & 2 deletions src/test/java/practice/pineapple/model/HomePage.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@ public List<WebElement> getAllHeaders() {
return getDriver().findElements(ALL_HEDERS);
}

public WebElement getLinkToReviews() throws InterruptedException {
public WebElement getLinkToReviews() {

WebElement link = getDriver().findElement(LINK_TO_REVIEWS);
Thread.sleep(5000);

return link;
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/practice/pineapple/tests/FeedbackTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class FeedbackTests extends BaseTest {
final String headerExpectedResult = "Отзывы";

@Test
public void testHederReviewsAfterNavigatingFromHomePage() throws InterruptedException {
public void testHederReviewsAfterNavigatingFromHomePage() {

openBaseURL();
String headerActualResult = new HomePage(getDriver())
Expand Down

0 comments on commit 3a64662

Please sign in to comment.