Write and Publish a Tutorial!
Do you have good notes or papers written by you and seeking for a
platform to publish? We provide the platform to publish your tutorials
in your name. If you wish to publish your tutorial in your name to
help the readers, Please contact us by sending an email to
publish@tools4testing.com or publish@java4coding.com The main way that
others learn about your work is through your published tutorials. If
you don’t publish, it will be as if you never did the work. Your notes
can help the readers only when you share it.
Cucumber Doc Strings
Doc strings allow you to specify multiline text data that you cannot fit on a single line.
Doc String should be placed inside """ triple quotes.
For example, if you need to describe the precise content of an email message, you could do it like this:
Feature: Login
Scenario: Check Email
Given I login to my Email account
When I click on mail from Manu
Then I should see an email containing:
"""
Dear Reader,
Welcome to www.tools4testing.com
Sincerely,
Manu M
"""