top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Selenese in selenium?

+1 vote
484 views
What is Selenese in selenium?
posted Oct 8, 2016 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

3 Answers

+1 vote
 
Best answer

Selenese is the set of commands which is used in Selenium IDE. These set of commands are used to test our web applications. Selenese commands help us to run our tests, to check the existence of specific elements on web page, presence of broken link on web page, any window or pop up, any alert box, any Ajax functionality and many more.

Selenese i.e Selenium Command in a group creates 'test script'

Selenese i.e. Selenium Commands can be classified into three categories:

1. Actions: These are command that manipulate the state of the application.

2. Accessors: These commands examine the state of the application and store the result in variables.

3. Assertions: These commands are like accessors, but they verify that the state of the application conforms to what is expected.

Now the Selenium Assertions can also be categorized into three category:

a. assert: When an 'Assert' fails, the test is aborted.

b. verify: When a 'Verify' fails, the test will continue execution, logging the failure.

c. waitFor: Wait for some condition to become true. They will succeed immediately if the condition is already true. However, they will fail and halt the test if the condition does not become true within the current timeout setting.

answer Oct 8, 2016 by Shivaranjini
+1 vote

Selenium commands, often called selenese, are the set of commands that run your tests. A sequence of these commands is a test script. Here we explain those commands in detail, and we present the many choices you have in testing your web application when using Selenium.

answer Oct 14, 2016 by Manikandan J
0 votes

Selenese is the script generated by using selenium ide it can be in multiple languages java,python etc
Learn about testing at http://qtpbook.com/software-testing/

answer Nov 19, 2016 by Karthika Qpt
...