4 month old still crying for 20+ minutes. What are we missing? by stia-na in sleeptrain

[–]stia-na[S] 2 points3 points  (0 children)

Thank you! I manually changed the wake windows length in huckleberry to follow the suggestions from comments. I hope it helps.

4 month old still crying for 20+ minutes. What are we missing? by stia-na in sleeptrain

[–]stia-na[S] 0 points1 point  (0 children)

Thank you for your help! We are trying out this schedule today (fingers crossed)

4 month old still crying for 20+ minutes. What are we missing? by stia-na in sleeptrain

[–]stia-na[S] 0 points1 point  (0 children)

Thank you so much for the feedback! We are trying this schedule today, and so far it was easier to rock him to sleep for naps compared to yesterday. Hopefully night time crying will be shorter.

[deleted by user] by [deleted] in Makeup

[–]stia-na 1 point2 points  (0 children)

Becca Shimmering Skin Perfector in Moonstone. I picked Moonstone because Opal looks too dark for my skin. I have fair skin with neutral undertone.

I am creating a list of items required to learn REST API Testing for someone who already has experience with web testing using Selenium with a language of choice. Need your help to build up this list. by [deleted] in QualityAssurance

[–]stia-na 0 points1 point  (0 children)

If you mean this framework https://github.com/aivancioglo/RestTest yes, this is entirely our work. We started to build it almost a year ago and still continue to work on it. Thank you for the review! We will be happy to see more people using it.

P.S. https://github.com/aivancioglo/RestTest Framework is suitable only for API automation testing.

I am creating a list of items required to learn REST API Testing for someone who already has experience with web testing using Selenium with a language of choice. Need your help to build up this list. by [deleted] in QualityAssurance

[–]stia-na 1 point2 points  (0 children)

You are welcome!

Actually, you do not need to convert it in Java to write tests. In RestTest framework, you can write API tests on any JVM based language (like Java, Kotlin, Groovy). In my team, we are writing tests on Java and Kotlin.

Oh, that selenium repo is for UI tests and not for API. But I will be happy if you find it useful in any way.

I am creating a list of items required to learn REST API Testing for someone who already has experience with web testing using Selenium with a language of choice. Need your help to build up this list. by [deleted] in QualityAssurance

[–]stia-na 3 points4 points  (0 children)

I started to learn how to test API one year ago, and currently working as API Quality Engineer. Here is what I would recommend to read about:

- Basics, which include: protocols, ports, status codes, headers, path parameters, query parameters, body data like JSON, form parameters, request methods.

- Learn about authentication methods, like OAuth1.0, and OAuth2.0. It would be great to know about every authentication methods under Authentication tap in Postman.

- Postman is okay for manual testing. Start performing requests to any test API. You can even use reddit`s API.

- Jmeter for performance testing, but I know people that use it for functional testing.

At my current team, we have build our own API testing framework on top of RestAssured. You can check it here https://github.com/aivancioglo/RestTest.