So you’re finally done building your brand new website.But all that hard work will be for nothing if no one is going to be visiting.The good news is that you don’t need to spend a fortune on fancy marketing campaigns ...
What is Softans ?
Softans is a search engine that enables you to ask any question or create polls for free.
What You will get here?
(1) Free Account.
(2) View Questions and also there answers.
(3) Ask Questions.
(4) Add Categories.
(5) Add tags
(6) Earn Badges.
(7) Edit Profiles.
(8) Top Members of Softans community will display on Home Page.
(9) Vote Answers without login.
(10) Vote Questions.
(11) Delete Account.
Softans Latest Articles
How To Write A Research Summary
Ghulam NabiEverything You Need To Know It’s a common perception that writing a research summary is pretty quick and an easy task. After all, how hard can writing 300-400 words be? However, the reality behind a research summary lies in stark ...
How to receive Financial Aid on Coursera to Get Paid Course for Free in 2-Easy Steps?
Ghulam NabiCoursera is an American massive open online course (MOOC) provider founded in 2012 by two Stanford university professors, Andrew Ng and Daphne Koller. The platform works with Universities and other platforms to offer online courses, certificates, and degrees across a variety of subjects. The ...
How to Inject Code into HTTP Responses in the Network in Python
Ghulam NabiLearn how you can inject Javascript, HTML or CSS to HTTP response packets in a spoofed network using Scapy and NetfilterQueue in Python After performing ARP spoofing on a target computer in a network, you can do many types of ...
TestNG Example: How To Create And Use TestNG.Xml File
Ghulam NabiThis Tutorial Explains How To Create TestNG.xml File With the Help of TestNG Example: One of the most important topics of TestNG i.e. the TestNG.xml file will be explained in detail here. A lot of tasks can be done simultaneously ...
Configure Cypress Tests to Run on Multiple Environments
Ghulam NabiOne of the most common scenarios in an automation framework is to run scripts on different environments like QA, staging, production, etc. There are multiple ways to configure your Cypress framework to run on different environments. I am going to ...
Use for loop in cypress
Ghulam NabiUse of For Loop & return method in Cypress automation : describe(” Use Of For Loop and return method “,function(){ it(‘Test Case 15’, function() { cy.visit(‘www.exapmle.com/’,{timeout:1000}); cy.get(‘.tab-tools > .icon > .svg-inline–fa’).click({force:true}); // Now this method will fetch the text which is already displayed & will save it. cy.get(‘.last-updated-date > span’).then(($txt) => { const txt = $txt.text() ...
How to replace keyboard output using python?
Ghulam NabiKeyboard Control Take full control of your keyboard with this small Python library. Hook global events, register hotkeys, simulate key presses and much more. Features Global event hook on all keyboards (captures keys regardless of focus). Listen and send keyboard events. Works with Windows and Linux (requires sudo), ...
Cypress Page Object Model
Ghulam NabiCypress Page Object Model Page Object Model, also known as POM, is a design pattern that creates an object repository for storing all web elements. It is useful in reducing code duplication and improves test case maintenance. In the Page ...
Get User Data from json file in Cypress
Ghulam NabiGet User Data from json file in Cypress Get User Data from json file in Cypress and use it your Test Cases. (1) Create a UserData.json file in fixtures folder. (2) Define the Values in the Curly Brackets . Something ...