Friday, 6 September 2024

Good & bad Prompt to write Selenium Tests using Generative AI with GPT

 



📌 Telegram Group: https://t.me/+FTf_NPb--GQ2ODhl
📌 YouTube channel: https://lnkd.in/gGUGmb-P

******

💛 Good & bad Prompt to write Selenium Tests using Generative AI with GPT

Scenario: Automate the validation of title for a webpage using Selenium-Java

***************************
🔺 Good Prompt Example:

👉 Prompt:

“Write a Selenium test in Java to validate the title of the webpage. Ensure that the test uses proper exception handling, includes assertions for validation, and is structured with clear comments. The test should navigate to ‘https://www.example.com', and verify that the page title is ‘Example Domain’. Additionally, the test should close the browser after execution.”

👉 Why It’s Good:

Clarity:
The prompt is clear and specific about what the test should do.

Details:
It includes additional requirements like exception handling, assertions, and closing the browser.

Context:
The webpage and title to be validated are specified.

Code Quality:
It emphasizes writing a well-structured test with comments.

*********************************
🔺 Bad Prompt Example:

👉 Prompt:
“Write a Selenium test to check a title.”

👉 Why It’s Bad:

Vagueness:
The prompt is too vague, without specifying the webpage, title, or any other details.

Lack of Detail:
It does not mention important aspects like exception handling, assertions, or browser management.

Unstructured:
The lack of structure could result in poor-quality, incomplete code.

__________
🚵‍♀️ Curious to learn more on usage of Prompts and How to use Generative AI and Code Generation tools for Software testing?
Try my sessions here: https://lnkd.in/gBjxYAPN

👾 Lets connect to discuss on use of LLM models like Sonet for Automation: https://lnkd.in/dP56a_5P

hashtag#ai hashtag#testing hashtag#softwaretesting hashtag#qualityassurance hashtag#career hashtag#sdet hashtag#qa hashtag#qaautomation hashtag#technology hashtag#llm hashtag#genai hashtag#sidpostai hashtag#sidpost

Saturday, 13 July 2024

How to use Java Overiding in Test Automation ?






💛 How to use Java Overiding in Test Automation ?



When I talk to folks in 1:1, I've noticed that many get confused about how to add new steps to the @BeforeTest method when it's set up in a base class.

Using @Override is a good way to handle this and it's a good example to mention in interviews. Just stick to relevant examples when discussing this topic during interviews and avoid giving random examples.



🔺 1️⃣ Overriding in Java:


Overriding is a concept in Java that allows a subclass to provide a specific implementation of a method that is already defined in its superclass. It enables polymorphism, where the same method name can behave differently based on the object it's called on.


🔺 Steps to implement Overriding





👉🏻 Create a Base Test Class:
Define a base test class where you initialize your WebDriver instance and set up common configurations.


public class BaseTest {
protected WebDriver driver;

@BeforeTest
public void setUp() {
// Initialize WebDriver
System.setProperty("webdriver.chrome.driver", "path/to/chromedriver");
driver = new ChromeDriver();
driver.manage().window().maximize();
}

// Other common setup methods can be added here
}



👉🏻 Override Setup Method:
Override the setUp() method in subclasses to provide specific setup actions for each test class

public class MyTest extends BaseTest {

@Override
@BeforeTest
public void setUp() {
// Call the setup method from the base class
super.setUp();

// Additional setup specific to this test class
// For example, navigating to a specific URL
driver.get("https://example.com");
}
}


In this example, the BaseTest class contains the setUp() method annotated with @BeforeTest, which initializes the WebDriver instance.

The MyTest class extends BaseTest, and the setUp() method is overridden to provide additional setup specific to the test class.

The overridden method is also annotated with @BeforeTest to ensure it executes before any test method belonging to the <test> tag in the TestNG XML suite file.



**
🔥 For a more hands-on learning experience in automation with realistic examples, consider exploring a one-on-one guided session on end-to-end automation and SDET(API+UI+Mobile+DevOps+GenerativeAI) : https://lnkd.in/giCxnJJ7

**

Introducing a curated package of Real-Time Interview Qus and Ans by an experienced Amazon SDET, covering topics like Selenium, API, Java, and more, gleaned from successful interview experiences at top companies: https://lnkd.in/gJrBGExe
**



hashtagsidpostjava hashtagsidpost hashtagjava hashtagqualityassurance hashtagtesting hashtagqa hashtagtestautomation hashtagautomation hashtagsoftwaretesting hashtagqaautomation hashtagsoftware hashtagcareer

All Time Popular Posts

Most Featured Post

𝗦𝘁𝗶𝗹𝗹 𝘀𝘁𝗿𝘂𝗴𝗴𝗹𝗶𝗻𝗴 𝘄𝗶𝘁𝗵 𝗝𝗮𝘃𝗮 𝗰𝗼𝗱𝗶𝗻𝗴 𝗿𝗼𝘂𝗻𝗱𝘀?

❓ 𝗦𝘁𝗶𝗹𝗹 𝘀𝘁𝗿𝘂𝗴𝗴𝗹𝗶𝗻𝗴 𝘄𝗶𝘁𝗵 𝗝𝗮𝘃𝗮 𝗰𝗼𝗱𝗶𝗻𝗴 𝗿𝗼𝘂𝗻𝗱𝘀? The issue isn’t your logic—it’s the lack of pattern recogniti...