1. What is Selenium?
Selenium is a suite of tools for browser automation. It is composed of "IDE", a recording and playback mechanism, "WebDriver" and "RC" which provide APIs for browser automation in a wide variety of languages, and "Grid", which allows many tests using the APIs to be run in parallel. It works with most browsers, including Firefox from 3.0 up to 7, Internet Explorer 8, Google Chrome, Safari and Opera 11.5
2. Describe technical problems that you had with Selenium tool?
As with any other type of test automation tools like SilkTest, HP QTP, Watir, Canoo Webtest, Selenium allows to record, edit, and debug tests cases. However there are several problems that seriously affect maintainability of recorded test cases, occasionally Quality Assurance Engineers complain that it takes more time to maintain automated test cases than to perform manual testing; however this is an issue with all automated testing tools and most likely related to improper testing framework design. Another problem is complex ID for an HTML element. If IDs is auto-generated, the recorder test cases may fail during playback. The work around is to use XPath to find required HTML element. Selenium supports AJAX without problems, but QA Tester should be aware that Selenium does not know when AJAX action is completed, so ClickAndWait will not work. Instead QA tester could use pause, but the snowballing effect of several 'pause' commands would really slow down total testing time of test cases. The best solution would be to use waitForElement.
3. What test can Selenium do?
Selenium could be used for the functional, regression, load testing of the web based applications. The automation tool could be implemented for post release validation with continuous integration tools like Jenkins, Hudson, QuickBuild or CruiseControl.
4. What is the price of Selenium license per server?
Selenium is open source software, released under the Apache 2.0 license and can be downloaded and used without charge.
5. How much does Selenium license cost per client machine?
Selenium is open source software, released under the Apache 2.0 license and can be downloaded and used without charge.
6. Where to download Selenium?
Selenium can be downloaded and installed for free from seleniumhq.org
7. What is the latest version of Selenium?
The latest versions are Selenium IDE 1.3.0, Selenium Server (formerly the Selenium RC Server) 2.8.0, Selenium Client Drivers Java 2.8.0, Selenium Client Drivers C# 2.8.0, Selenium Client Drivers Ruby 2.8.0, Selenium Client Drivers Python 2.8.1, Selenium Grid 1.0.8.
8. What is Selenium IDE?
Selenium IDE is a Firefox add-on that records clicks, typing, and other actions to make a test cases, which QA Tester can play back in the Firefox browser or export to Selenium RC. Selenium IDE has the following features: record/play feature, debugging with step-by-step and breakpoints, page abstraction functionality, an extensibility capability allowing the use of add-ons or user extensions that expand the functionality of Selenium IDE
9. What are the limitations of Selenium IDE?
Selenium IDE has many great features and is a fruitful and well-organized test automation tool for developing test cases, in the same time Selenium IDE is missing certain vital features of a testing tool: conditional statements, loops, logging functionality, exception handling, reporting functionality, database testing, re-execution of failed tests and screenshots taking capability. Selenium IDE doesn't for IE, Safari and Opera browsers.
10. What does SIDE stand for?
Selenium IDE. It was a very tricky interview question.
11. What is Selenium Remote Control (RC) tool?
Selenium Remote Control (RC) is the powerful solution for test cases that need more than simple browser actions and linear execution. Selenium-RC allows the developing of complex test scenarios like reading and writing files, querying a database, and emailing test reports. These tasks can be achieved by tweaking test cases in your preferred programming language.
12. What are the advantages using Selenium as testing tool?
If QA Tester would compare Selenium with HP QTP or Micro Focus SilkTest, QA Engineer would easily notice tremendous cost savings for Selenium. In contrast to expensive SilkTest license or QTP license, Selenium automation tool is absolutely free. It means that with almost no investment in purchasing tools, QA Team could easily build the state of the art test automation infrastructure. Selenium allows developing and executing test cases in various programming languages including .NET, Java, Perl, RubyPython, PHP and even HTML. This is a great Selenium advantage, most likely your software developers already know how to develop and maintain C# or Java code, so they transfer coding techniques and best practices to QA team. Selenium allows simple and powerful DOM-level testing and in the same time could be used for testing in the traditional waterfall or modern Agile environments. Selenium would be definitely a great fit for the continuous integration tools Jenkins, Hudson, CruiseControl, because it could be installed on the server testing box, and controlled remotely from continuous integration build.
13. What is Selenium Grid?
Selenium Grid extends Selenium RC to distribute your tests across multiple servers, saving you time by running tests in parallel.
14. What is Selenium WebDriver?
Selenium WebDriver is a tool for writing automated tests of websites. It is an API name and aims to mimic the behaviour of a real user, and as such interacts with the HTML of the application. Selenium WebDriver is the successor of Selenium Remote Control which has been officially deprecated.
15. How many browsers are supported by Selenium IDE?
Test Engineer can record and playback test with Selenium IDE in Firefox.
16. Can Selenium test an application on iPhone's Mobile Safari browser?
Selenium should be able to handle Mobile Safari browser. There is experimental Selenium IPhone Driver for running tests on Mobile Safari on the iPhone, iPad and iPod Touch.
17. Can Selenium test an application on Android browser?
Selenium should be able to handle Android browser. There is experimental Selenium Android Driver for running tests in Android browser.
18. What are the disadvantages of using Selenium as testing tool?
Selenium weak points are tricky setup; dreary errors diagnosis; tests only web applications
19. How many browsers are supported by Selenium Remote Control?
QA Engineer can use Firefox 7, IE 8, Safari 5 and Opera 11.5 browsers to run actuall tests in Selenium RC.
20. How many programming languages can you use in Selenium RC?
Several programming languages are supported by Selenium Remote Control - C# Java Perl PHP Python Ruby
21. How many testing framework can QA Tester use in Selenium RC?
Testing frameworks aren't required, but they can be helpful if QA Tester wants to automate test cases. Selenium RC supports Bromine, JUnit, NUnit, RSpec (Ruby), Test::Unit (Ruby), TestNG (Java), unittest (Python).
22. How to developer Selenium Test Cases?
Using the Selenium IDE, QA Tester can record a test to comprehend the syntax of Selenium IDE commands, or to check the basic syntax for a specific type of user interface. Keep in mind that Selenium IDE recorder is not clever as QA Testers want it to be. Quality assurance team should never consider Selenium IDE as a "record, save, and run it" tool, all the time anticipate reworking a recorded test cases to make them maintainable in the future.
23. What programming language is best for writing Selenium tests?
The web applications may be written in Java, Ruby, PHP, Python or any other web framework. There are certain advantages for using the same language for writing test cases as application under test. For example, if the team already have the experience with Java, QA Tester could always get the piece of advice while mastering Selenium test cases in Java. Sometimes it is better to choose simpler programming language that will ultimately deliver better success. In this case QA testers can adopt easier programming languages, for example Ruby, much faster comparing with Java, and can become become experts as soon as possible.
24. Have you read any good books on Selenium?
There are several great books covering Selenium automation tool, you could check the review at Best Selenium Books: Top Recommended page
25. Do you know any alternative test automation tools for Selenium?
Selenium appears to be the mainstream open source tool for browser side testing, but there are many alternatives. Canoo Webtest is a great Selenium alternative and it is probably the fastest automation tool. Another Selenium alternative is Watir, but in order to use Watir QA Tester has to learn Ruby. One more alternative to Selenium is Sahi, but is has confusing interface and small developers community.
26. Compare HP QTP vs Selenium?
When QA team considers acquiring test automation to assist in testing, one of the most critical decisions is what technologies or tools to use to automate the testing. The most obvious approach will be to look to the software market and evaluate a few test automation tools. Read Selenium vs QTP comparison
27. Compare Borland Silktest vs Selenium?
Check Selenium vs SilkTest comparison
28. How to test Ajax application with Selenium
Ajax interview questions could be tough for newbie in the test automation, but will be easily cracked by Selenium Tester with a relevant experience. Read the detailed approach at Testing Ajax applications with Selenium in the right way
29. How can I learn to automate testing using Selenium?
Don't be surprised if the interviewer asks you to describe the approach for learning Selenium. This interviewer wants to hear how you can innovative software test automation process the company. Most likely they are looking for software professional with a good Selenium experience, who can do Selenium training for team members and get the team started with test automation. I hope this Selenium tutorial will be helpful in the preparation for this Selenium interview question.
30. What are the main components of Selenium testing tools?
Selenium IDE, Selenium RC and Selenium Grid
31. What is Selenium IDE?
Selenium IDE is for building Selenium test cases. It operates as a Mozilla Firefox add on and provides an easy to use interface for developing and running individual test cases or entire test suites. Selenium-IDE has a recording feature, which will keep account of user actions as they are performed and store them as a reusable script to play back.
32. What is the use of context menu in Selenium IDE?
It allows the user to pick from a list of assertions and verifications for the selected location.
33. Can tests recorded using Selenium IDE be run in other browsers?
Yes. Although Selenium IDE is a Firefox add on, however, tests created in it can also be run in other browsers by using Selenium RC (Selenium Remote Control) and specifying the name of the test suite in command line.
34. What are the advantage and features of Selenium IDE?
a. Intelligent field selection will use IDs, names, or XPath as needed
b. It is a record & playback tool and the script format can be written in various languages including C#, Java, PERL, Python, PHP, HTML
c. Auto complete for all common Selenium commands
d. Debug and set breakpoints
e. Option to automatically assert the title of every page
f. Support for Selenium user-extensions.js file
35. What are the disadvantage of Selenium IDE tool?
a. Selenium IDE tool can only be used in Mozilla Firefox browser.
b. It is not playing multiple windows when we record it.
36. What is Selenium RC (Remote Control)?
Selenium RC allows the test automation expert to use a programming language for maximum flexibility and extensibility in developing test logic. For example, if the application under test returns a result set and the automated test program needs to run tests on each element in the result set, the iteration / loop support of programming language’s can be used to iterate through the result set, calling Selenium commands to run tests on each item. Selenium RC provides an API and library for each of its supported languages. This ability to use Selenium RC with a high level programming language to develop test cases also allows the automated testing to be integrated with the project’s automated build environment.
37. What is Selenium Grid?
Selenium Grid in the selenium testing suit allows the Selenium RC solution to scale for test suites that must be run in multiple environments. Selenium Grid can be used to run multiple instances of Selenium RC on various operating system and browser configurations.
38. How Selenium Grid works?
Selenium Grid sent the tests to the hub. Then tests are redirected to an available Selenium RC, which launch the browser and run the test. Thus, it allows for running tests in parallel with the entire test suite.
39. What you say about the flexibility of Selenium test suite?
Selenium testing suite is highly flexible. There are multiple ways to add functionality to Selenium framework to customize test automation. As compared to other test automation tools, it is Selenium’s strongest characteristic. Selenium Remote Control support for multiple programming and scripting languages allows the test automation engineer to build any logic they need into their automated testing and to use a preferred programming or scripting language of one’s choice.
Also, the Selenium testing suite is an open source project where code can be modified and enhancements can be submitted for contribution.
40. What test can Selenium do?
Selenium is basically used for the functional testing of web based applications. It can be used for testing in the continuous integration environment. It is also useful for agile testing
41. What is the cost of Selenium test suite?
Selenium test suite a set of open source software tool, it is free of cost.
42. What browsers are supported by Selenium Remote Control?
The test automation expert can use Firefox, IE 7/8, Safari and Opera browsers to run tests in Selenium Remote Control.
43. What programming languages can you use in Selenium RC?
C#, Java, Perl, PHP, Python, Ruby
44. What are the advantages and disadvantages of using Selenium as testing tool?
Advantages: Free, Simple and powerful DOM (document object model) level testing, can be used for continuous integration; great fit with Agile projects.
Disadvantages: Tricky setup; dreary errors diagnosis; can not test client server applications.
45. What is difference between QTP and Selenium?
Only web applications can be testing using Selenium testing suite. However, QTP can be used for testing client server applications. Selenium supports following web browsers: Internet Explorer,
Firefox, Safari, Opera or Konqueror on Windows, Mac OS X and Linux. However, QTP is limited to Internet Explorer on Windows.
QTP uses scripting language implemented on top of VB Script. However, Selenium test suite has the flexibility to use many languages like Java, .Net, Perl, PHP, Python, and Ruby.
46. What is difference between Borland Silk test and Selenium?
Selenium is completely free test automation tool, while Silk Test is not. Only web applications can be testing using Selenium testing suite. However, Silk Test can be used for testing client server applications. Selenium supports following web browsers: Internet Explorer, Firefox, Safari, Opera or Konqueror on Windows, Mac OS X and Linux. However, Silk Test is limited to Internet Explorer and Firefox.
Silk Test uses 4Test scripting language. However, Selenium test suite has the flexibility to use many languages like Java, .Net, Perl, PHP, Python, and Ruby.
47. What is the difference between an assert and a verify with Selenium commands?
Effectively an “assert” will fail the test and abort the current test case, whereas a “verify” will fail the test and continue to run the test case.
48. If a Selenium function requires a script argument, what would that argument look like in general terms?
StoreEval(script, variable) and storeExpression(expression, variableName)
49. If a Selenium function requires a pattern argument, what five prefixes might that argument have?
glob, regexp, exact, regexpi
50. What is the regular expression sequence that loosely translates to "anything or nothing?"
(.* i.e., dot star) This two-character sequence can be translated as “0 or more occurrences of any character” or more simply, “anything or nothing.
51. What is the globbing sequence that loosely translates to "anything or nothing?
(*) which translates to “match anything,” i.e., nothing, a single character, or many characters.
52. What does a character class for all alphabetic characters and digits look like in regular expressions?
[0-9] matches any digit
[A-Za-z0-9] matches any alphanumeric character
[A-Za-z] matches any alphabet character
53. What does a character class for all alphabetic characters and digits look like in globbing?
[0-9] matches any digit
[a-zA-Z0-9] matches any alphanumeric character
[a-zA-Z] matches any alphabet character
54. What must one set within SIDE in order to run a test from the beginning to a certain point within the test?
Set Toggle BreakPoint.
55. What does a right-pointing green triangle at the beginning of a command in SIDE indicate?
Play Entire Test Suite
56. Which wildcards does SIDE support?
*, [ ]
57. What are the four types of regular expression quantifiers which we've studied?
Ans : * quantifier: 0 or more of the preceding character (or group)
+ quantifier: 1 or more of the preceding character (or group)
? quantifier: 0 or 1 of the preceding character (or group)
{1,5} quantifier: 1 through 5 of the preceding character (or group)
58. What regular expression special character(s) means "any character?"
(.*)
59. What distinguishes between an absolute and relative URL in SIDE?
Absolute URL: Its is base url and this represent domain address.
Relative URL: (Absolute URL + Page Path).
Open command uses Base URL (Absolute URL) to navigate web page.
60. How would one access a Selenium variable named "count" from within a JavaScript snippet?
${count}
61. What Selenese command can be used to display the value of a variable in the log file, which can be very valuable for debugging?
echo()
62. If one wanted to display the value of a variable named answer in the log file, what would the first argument to the previous command look like?
echo()
63. Which Selenium command(s) simulates selecting a link?
click, clickandWait, ClickAt, ClickAtandWait, DoubleClick, DoubleClickandWait, doubleClickAt, doubleClickAtandWait
64. Which two commands can be used to check that an alert with a particular message popped up?
The following commands are available within Selenium for processing Alerts:
• getAlert()
• assertAlert()
• assertAlertNotPresent()
• assertAlertPresent()
• storeAlert()
• storeAlertPresent()
• verifyAlert()
• verifyAlertNotPresent()
• verifyAlertPresent()
• waitForAlert()
• waitForAlertNotPresent()
• waitForAlertPresent()
The AlertPresent() and AlertNotPresent() functions check for the existence or not of an alert – regardless of it’s content. The Alert() functions allow the caller to specify a pattern which should be matched. The getAlert() method also exists in Selenium RC, and returns the text from the previous Alert displayed.
Selenium is a suite of tools for browser automation. It is composed of "IDE", a recording and playback mechanism, "WebDriver" and "RC" which provide APIs for browser automation in a wide variety of languages, and "Grid", which allows many tests using the APIs to be run in parallel. It works with most browsers, including Firefox from 3.0 up to 7, Internet Explorer 8, Google Chrome, Safari and Opera 11.5
2. Describe technical problems that you had with Selenium tool?
As with any other type of test automation tools like SilkTest, HP QTP, Watir, Canoo Webtest, Selenium allows to record, edit, and debug tests cases. However there are several problems that seriously affect maintainability of recorded test cases, occasionally Quality Assurance Engineers complain that it takes more time to maintain automated test cases than to perform manual testing; however this is an issue with all automated testing tools and most likely related to improper testing framework design. Another problem is complex ID for an HTML element. If IDs is auto-generated, the recorder test cases may fail during playback. The work around is to use XPath to find required HTML element. Selenium supports AJAX without problems, but QA Tester should be aware that Selenium does not know when AJAX action is completed, so ClickAndWait will not work. Instead QA tester could use pause, but the snowballing effect of several 'pause' commands would really slow down total testing time of test cases. The best solution would be to use waitForElement.
3. What test can Selenium do?
Selenium could be used for the functional, regression, load testing of the web based applications. The automation tool could be implemented for post release validation with continuous integration tools like Jenkins, Hudson, QuickBuild or CruiseControl.
4. What is the price of Selenium license per server?
Selenium is open source software, released under the Apache 2.0 license and can be downloaded and used without charge.
5. How much does Selenium license cost per client machine?
Selenium is open source software, released under the Apache 2.0 license and can be downloaded and used without charge.
6. Where to download Selenium?
Selenium can be downloaded and installed for free from seleniumhq.org
7. What is the latest version of Selenium?
The latest versions are Selenium IDE 1.3.0, Selenium Server (formerly the Selenium RC Server) 2.8.0, Selenium Client Drivers Java 2.8.0, Selenium Client Drivers C# 2.8.0, Selenium Client Drivers Ruby 2.8.0, Selenium Client Drivers Python 2.8.1, Selenium Grid 1.0.8.
8. What is Selenium IDE?
Selenium IDE is a Firefox add-on that records clicks, typing, and other actions to make a test cases, which QA Tester can play back in the Firefox browser or export to Selenium RC. Selenium IDE has the following features: record/play feature, debugging with step-by-step and breakpoints, page abstraction functionality, an extensibility capability allowing the use of add-ons or user extensions that expand the functionality of Selenium IDE
9. What are the limitations of Selenium IDE?
Selenium IDE has many great features and is a fruitful and well-organized test automation tool for developing test cases, in the same time Selenium IDE is missing certain vital features of a testing tool: conditional statements, loops, logging functionality, exception handling, reporting functionality, database testing, re-execution of failed tests and screenshots taking capability. Selenium IDE doesn't for IE, Safari and Opera browsers.
10. What does SIDE stand for?
Selenium IDE. It was a very tricky interview question.
11. What is Selenium Remote Control (RC) tool?
Selenium Remote Control (RC) is the powerful solution for test cases that need more than simple browser actions and linear execution. Selenium-RC allows the developing of complex test scenarios like reading and writing files, querying a database, and emailing test reports. These tasks can be achieved by tweaking test cases in your preferred programming language.
12. What are the advantages using Selenium as testing tool?
If QA Tester would compare Selenium with HP QTP or Micro Focus SilkTest, QA Engineer would easily notice tremendous cost savings for Selenium. In contrast to expensive SilkTest license or QTP license, Selenium automation tool is absolutely free. It means that with almost no investment in purchasing tools, QA Team could easily build the state of the art test automation infrastructure. Selenium allows developing and executing test cases in various programming languages including .NET, Java, Perl, RubyPython, PHP and even HTML. This is a great Selenium advantage, most likely your software developers already know how to develop and maintain C# or Java code, so they transfer coding techniques and best practices to QA team. Selenium allows simple and powerful DOM-level testing and in the same time could be used for testing in the traditional waterfall or modern Agile environments. Selenium would be definitely a great fit for the continuous integration tools Jenkins, Hudson, CruiseControl, because it could be installed on the server testing box, and controlled remotely from continuous integration build.
13. What is Selenium Grid?
Selenium Grid extends Selenium RC to distribute your tests across multiple servers, saving you time by running tests in parallel.
14. What is Selenium WebDriver?
Selenium WebDriver is a tool for writing automated tests of websites. It is an API name and aims to mimic the behaviour of a real user, and as such interacts with the HTML of the application. Selenium WebDriver is the successor of Selenium Remote Control which has been officially deprecated.
15. How many browsers are supported by Selenium IDE?
Test Engineer can record and playback test with Selenium IDE in Firefox.
16. Can Selenium test an application on iPhone's Mobile Safari browser?
Selenium should be able to handle Mobile Safari browser. There is experimental Selenium IPhone Driver for running tests on Mobile Safari on the iPhone, iPad and iPod Touch.
17. Can Selenium test an application on Android browser?
Selenium should be able to handle Android browser. There is experimental Selenium Android Driver for running tests in Android browser.
18. What are the disadvantages of using Selenium as testing tool?
Selenium weak points are tricky setup; dreary errors diagnosis; tests only web applications
19. How many browsers are supported by Selenium Remote Control?
QA Engineer can use Firefox 7, IE 8, Safari 5 and Opera 11.5 browsers to run actuall tests in Selenium RC.
20. How many programming languages can you use in Selenium RC?
Several programming languages are supported by Selenium Remote Control - C# Java Perl PHP Python Ruby
21. How many testing framework can QA Tester use in Selenium RC?
Testing frameworks aren't required, but they can be helpful if QA Tester wants to automate test cases. Selenium RC supports Bromine, JUnit, NUnit, RSpec (Ruby), Test::Unit (Ruby), TestNG (Java), unittest (Python).
22. How to developer Selenium Test Cases?
Using the Selenium IDE, QA Tester can record a test to comprehend the syntax of Selenium IDE commands, or to check the basic syntax for a specific type of user interface. Keep in mind that Selenium IDE recorder is not clever as QA Testers want it to be. Quality assurance team should never consider Selenium IDE as a "record, save, and run it" tool, all the time anticipate reworking a recorded test cases to make them maintainable in the future.
23. What programming language is best for writing Selenium tests?
The web applications may be written in Java, Ruby, PHP, Python or any other web framework. There are certain advantages for using the same language for writing test cases as application under test. For example, if the team already have the experience with Java, QA Tester could always get the piece of advice while mastering Selenium test cases in Java. Sometimes it is better to choose simpler programming language that will ultimately deliver better success. In this case QA testers can adopt easier programming languages, for example Ruby, much faster comparing with Java, and can become become experts as soon as possible.
24. Have you read any good books on Selenium?
There are several great books covering Selenium automation tool, you could check the review at Best Selenium Books: Top Recommended page
25. Do you know any alternative test automation tools for Selenium?
Selenium appears to be the mainstream open source tool for browser side testing, but there are many alternatives. Canoo Webtest is a great Selenium alternative and it is probably the fastest automation tool. Another Selenium alternative is Watir, but in order to use Watir QA Tester has to learn Ruby. One more alternative to Selenium is Sahi, but is has confusing interface and small developers community.
26. Compare HP QTP vs Selenium?
When QA team considers acquiring test automation to assist in testing, one of the most critical decisions is what technologies or tools to use to automate the testing. The most obvious approach will be to look to the software market and evaluate a few test automation tools. Read Selenium vs QTP comparison
27. Compare Borland Silktest vs Selenium?
Check Selenium vs SilkTest comparison
28. How to test Ajax application with Selenium
Ajax interview questions could be tough for newbie in the test automation, but will be easily cracked by Selenium Tester with a relevant experience. Read the detailed approach at Testing Ajax applications with Selenium in the right way
29. How can I learn to automate testing using Selenium?
Don't be surprised if the interviewer asks you to describe the approach for learning Selenium. This interviewer wants to hear how you can innovative software test automation process the company. Most likely they are looking for software professional with a good Selenium experience, who can do Selenium training for team members and get the team started with test automation. I hope this Selenium tutorial will be helpful in the preparation for this Selenium interview question.
30. What are the main components of Selenium testing tools?
Selenium IDE, Selenium RC and Selenium Grid
31. What is Selenium IDE?
Selenium IDE is for building Selenium test cases. It operates as a Mozilla Firefox add on and provides an easy to use interface for developing and running individual test cases or entire test suites. Selenium-IDE has a recording feature, which will keep account of user actions as they are performed and store them as a reusable script to play back.
32. What is the use of context menu in Selenium IDE?
It allows the user to pick from a list of assertions and verifications for the selected location.
33. Can tests recorded using Selenium IDE be run in other browsers?
Yes. Although Selenium IDE is a Firefox add on, however, tests created in it can also be run in other browsers by using Selenium RC (Selenium Remote Control) and specifying the name of the test suite in command line.
34. What are the advantage and features of Selenium IDE?
a. Intelligent field selection will use IDs, names, or XPath as needed
b. It is a record & playback tool and the script format can be written in various languages including C#, Java, PERL, Python, PHP, HTML
c. Auto complete for all common Selenium commands
d. Debug and set breakpoints
e. Option to automatically assert the title of every page
f. Support for Selenium user-extensions.js file
35. What are the disadvantage of Selenium IDE tool?
a. Selenium IDE tool can only be used in Mozilla Firefox browser.
b. It is not playing multiple windows when we record it.
36. What is Selenium RC (Remote Control)?
Selenium RC allows the test automation expert to use a programming language for maximum flexibility and extensibility in developing test logic. For example, if the application under test returns a result set and the automated test program needs to run tests on each element in the result set, the iteration / loop support of programming language’s can be used to iterate through the result set, calling Selenium commands to run tests on each item. Selenium RC provides an API and library for each of its supported languages. This ability to use Selenium RC with a high level programming language to develop test cases also allows the automated testing to be integrated with the project’s automated build environment.
37. What is Selenium Grid?
Selenium Grid in the selenium testing suit allows the Selenium RC solution to scale for test suites that must be run in multiple environments. Selenium Grid can be used to run multiple instances of Selenium RC on various operating system and browser configurations.
38. How Selenium Grid works?
Selenium Grid sent the tests to the hub. Then tests are redirected to an available Selenium RC, which launch the browser and run the test. Thus, it allows for running tests in parallel with the entire test suite.
39. What you say about the flexibility of Selenium test suite?
Selenium testing suite is highly flexible. There are multiple ways to add functionality to Selenium framework to customize test automation. As compared to other test automation tools, it is Selenium’s strongest characteristic. Selenium Remote Control support for multiple programming and scripting languages allows the test automation engineer to build any logic they need into their automated testing and to use a preferred programming or scripting language of one’s choice.
Also, the Selenium testing suite is an open source project where code can be modified and enhancements can be submitted for contribution.
40. What test can Selenium do?
Selenium is basically used for the functional testing of web based applications. It can be used for testing in the continuous integration environment. It is also useful for agile testing
41. What is the cost of Selenium test suite?
Selenium test suite a set of open source software tool, it is free of cost.
42. What browsers are supported by Selenium Remote Control?
The test automation expert can use Firefox, IE 7/8, Safari and Opera browsers to run tests in Selenium Remote Control.
43. What programming languages can you use in Selenium RC?
C#, Java, Perl, PHP, Python, Ruby
44. What are the advantages and disadvantages of using Selenium as testing tool?
Advantages: Free, Simple and powerful DOM (document object model) level testing, can be used for continuous integration; great fit with Agile projects.
Disadvantages: Tricky setup; dreary errors diagnosis; can not test client server applications.
45. What is difference between QTP and Selenium?
Only web applications can be testing using Selenium testing suite. However, QTP can be used for testing client server applications. Selenium supports following web browsers: Internet Explorer,
Firefox, Safari, Opera or Konqueror on Windows, Mac OS X and Linux. However, QTP is limited to Internet Explorer on Windows.
QTP uses scripting language implemented on top of VB Script. However, Selenium test suite has the flexibility to use many languages like Java, .Net, Perl, PHP, Python, and Ruby.
46. What is difference between Borland Silk test and Selenium?
Selenium is completely free test automation tool, while Silk Test is not. Only web applications can be testing using Selenium testing suite. However, Silk Test can be used for testing client server applications. Selenium supports following web browsers: Internet Explorer, Firefox, Safari, Opera or Konqueror on Windows, Mac OS X and Linux. However, Silk Test is limited to Internet Explorer and Firefox.
Silk Test uses 4Test scripting language. However, Selenium test suite has the flexibility to use many languages like Java, .Net, Perl, PHP, Python, and Ruby.
47. What is the difference between an assert and a verify with Selenium commands?
Effectively an “assert” will fail the test and abort the current test case, whereas a “verify” will fail the test and continue to run the test case.
48. If a Selenium function requires a script argument, what would that argument look like in general terms?
StoreEval(script, variable) and storeExpression(expression, variableName)
49. If a Selenium function requires a pattern argument, what five prefixes might that argument have?
glob, regexp, exact, regexpi
50. What is the regular expression sequence that loosely translates to "anything or nothing?"
(.* i.e., dot star) This two-character sequence can be translated as “0 or more occurrences of any character” or more simply, “anything or nothing.
51. What is the globbing sequence that loosely translates to "anything or nothing?
(*) which translates to “match anything,” i.e., nothing, a single character, or many characters.
52. What does a character class for all alphabetic characters and digits look like in regular expressions?
[0-9] matches any digit
[A-Za-z0-9] matches any alphanumeric character
[A-Za-z] matches any alphabet character
53. What does a character class for all alphabetic characters and digits look like in globbing?
[0-9] matches any digit
[a-zA-Z0-9] matches any alphanumeric character
[a-zA-Z] matches any alphabet character
54. What must one set within SIDE in order to run a test from the beginning to a certain point within the test?
Set Toggle BreakPoint.
55. What does a right-pointing green triangle at the beginning of a command in SIDE indicate?
Play Entire Test Suite
56. Which wildcards does SIDE support?
*, [ ]
57. What are the four types of regular expression quantifiers which we've studied?
Ans : * quantifier: 0 or more of the preceding character (or group)
+ quantifier: 1 or more of the preceding character (or group)
? quantifier: 0 or 1 of the preceding character (or group)
{1,5} quantifier: 1 through 5 of the preceding character (or group)
58. What regular expression special character(s) means "any character?"
(.*)
59. What distinguishes between an absolute and relative URL in SIDE?
Absolute URL: Its is base url and this represent domain address.
Relative URL: (Absolute URL + Page Path).
Open command uses Base URL (Absolute URL) to navigate web page.
60. How would one access a Selenium variable named "count" from within a JavaScript snippet?
${count}
61. What Selenese command can be used to display the value of a variable in the log file, which can be very valuable for debugging?
echo()
62. If one wanted to display the value of a variable named answer in the log file, what would the first argument to the previous command look like?
echo()
63. Which Selenium command(s) simulates selecting a link?
click, clickandWait, ClickAt, ClickAtandWait, DoubleClick, DoubleClickandWait, doubleClickAt, doubleClickAtandWait
64. Which two commands can be used to check that an alert with a particular message popped up?
The following commands are available within Selenium for processing Alerts:
• getAlert()
• assertAlert()
• assertAlertNotPresent()
• assertAlertPresent()
• storeAlert()
• storeAlertPresent()
• verifyAlert()
• verifyAlertNotPresent()
• verifyAlertPresent()
• waitForAlert()
• waitForAlertNotPresent()
• waitForAlertPresent()
The AlertPresent() and AlertNotPresent() functions check for the existence or not of an alert – regardless of it’s content. The Alert() functions allow the caller to specify a pattern which should be matched. The getAlert() method also exists in Selenium RC, and returns the text from the previous Alert displayed.
See SWIFT Interview questions on
ReplyDeletehttp://testwithus.blogspot.in/p/swift.html
For testing training in jaipur:-
Visit
http://testwithus.blogspot.in/
Selenium Interview questions:-
http://testwithus.blogspot.in/
Thanks for sharing this Information, Got to learn new things from your Blog on Selenium.
DeleteRef link : http://thecreatingexperts.com/software-testing-training-in-chennai/selenium-training-in-chennai/
You can find more selenium webdriver interview questions here : Selenium Webdriver Questions for interview
DeleteSoftware Testing: Selenium Interview Questions With Answers >>>>> Download Now
Delete>>>>> Download Full
Software Testing: Selenium Interview Questions With Answers >>>>> Download LINK
>>>>> Download Now
Software Testing: Selenium Interview Questions With Answers >>>>> Download Full
>>>>> Download LINK rR
THANK YOU SOO MUCH
ReplyDeletevery useful! thank you!
ReplyDeleteReally Very Useful and Thanks You Sir....
ReplyDeleteYou can find more selenium webdriver interview questions here : Selenium Webdriver Questions for interview
DeleteThanku so much , its very useful
ReplyDeleteGood content presentation! Thanks for putting the efforts on gathering useful content and sharing here. You can find more Selenium testing related question and answers in the below forum.
ReplyDeleteSelenium testing question and answers
Thanku so much.
ReplyDeleteThankyou
ReplyDeleteThank you it is little bit help full
ReplyDeleteThank you. If possible provide about Webdriver and more on Ajax . Thanks again
ReplyDeleteVery useful information on selenium and comparison with different types of selenium is also good.
ReplyDeletenice,thank u useful....
ReplyDeletevery useful! thank you!
ReplyDeleteSmall correction:
ReplyDelete6. Where to download Selenium?
Selenium can be downloaded for free from seleniumhq.org, its not an installable, just unzip and use it.
for more selenium interview questions ans answers.
ReplyDeleteplease visit-
http://www.studyselenium.com/2013/12/100-selenium-interview-questions.html
Hi Ruchi,
DeleteI have created selenium group in whatsapp if u are intrested plz share your whatsapp number at ksk.4ever@gmail.com mail id
Regards,
Sravan
hi... plz add my no
DeleteThis comment has been removed by the author.
ReplyDeleteSelenium is really an excellent tool and your information related to selenium recording is really interesting. Also I want to know the latest new techniques which are implemented in selenium. Can you please update it in your website?
ReplyDeleteSelenium training Chennai
Nice Context and journey on selenium training. It has answered many of my questionsPalash
ReplyDeleteThanks for your informative article on Selenium web driver. This portable testing tool makes the software validation process lot simpler. Further, it delivers precise information about the software application or environment. Best Selenium training institute in Chennai
ReplyDeleteI learned a lot at thedevmasters.com. It is an amazing service special there mentoring program gave me real hand on experience in troubleshooting. I was able to create a full “Sports Statistics Scripts write a script to process data using selenium tools.” in less than 6 hour time all by myself. Amazing professional team of mentors and software educators. Visit www.thedevmasters.com and robin@thedevmasters.com, 1(866)340-1375
ReplyDeleteThe information you posted here is useful to make my career better. Thanks for sharing such a informative post. keep updates...
ReplyDeleteRegards..
Salesforce Training in Chennai
Thanks for sharing this information. Salesforce is a cloud based CRM. Nowadays most of the multinational companies used this CRM for managing their customers. To know more details call 9841746595.
ReplyDeleteRegards..
Salesforce Training Institutes in Chennai
Really nice post. SEO is one of the digital marketing techniques used for improve the website ranking in search engine result page. To know more details please call 9003623340.
ReplyDeleteRegards..
SEO Course in Chennai
Really awesome blog. Software testing is a method of executing the application or program with the intent of searching the software errors. Software Testing Course in Chennai offering this course at reasonable cost.
ReplyDeleteExcellent information. HTML5 is a markup language used for designing responsive website and it is also used for structuring and presenting the website content.
ReplyDeleteRegards.
HTML5 Training Institutes in Chennai | PHP Training Institute in Chennai
Hi, Your blog is really very informative and useful for me. Thanks for sharing this valuable blog.
ReplyDeleteRegards..
Unix Training in Chennai
Cloud computing is storing and accessing the large data sets over the internet instead of your PC computer. So that you can manage the data and program anywhere through the internet.
ReplyDeleteRegards..
Cloud Computing Training in Chennai
Thanks for sharing . Posted information are very useful for us. Thank you once again.
ReplyDeleteSoftware estimation techniques
Good collection....
ReplyDeleteTesting Questions and Answers
Hello All,
ReplyDeleteI have created selenium group in whatsapp if u are intrested plz share your whatsapp number at ksk.4ever@gmail.com mail id
Regards,
Sravan
ReplyDeleteHey, nice site you have here! Keep up the excellent work!
Best Software Testing Training Institute in Chennai with Placement
Hi, this is Yasmin from Chennai. I have read your blog. It’s very informative and useful blog. You have done really great job. Keep update your blog. Thanks..
ReplyDeleteRegards.
Selenium Training in Chennai | Selenium Training in Chennai
nice collection. You can also refer Selenium Interview Question and Answer
ReplyDeleteThank you for putting an effort to published this article. You've done a great job! Good bless!
ReplyDeleteSelenium Training in Chennai
Very good collection of question and answers thank you for sharing this useful article. Know more about Selenium Testining Training in Bangalore
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteThank you for sharing Selenium interview questions. Keep it up. For more Selenium information visit here.
ReplyDeleteI feel so much smarter now. I like the trend that content is becoming more and more important.I like the trend that content is becoming more and more important.
ReplyDeleteSelenium Training in Chennai
ReplyDeleteWow! That's really great information guys.I know lot of new things here. Really great contribution.Thank you
Software Estimation Techniques Training in Chennai
Thanks for sharing the important interview questions.
ReplyDeleteIt is very helpful especially for me being a fresher.
Selenium training in Chennai | Best Selenium training institute in Chennai
Selenium is Open Source - Functional Automation Tool, It supports most of the languages like Java, Perl, Python, Ruby, C#, PHP, Dot Net. It is also supports to all OS and all Browsers in the market. They are classified into four 1. Selenium IDE, 2.Selenium WebDriver, 3. Selenium RC (Remote Control), 4.Selenium Grid
ReplyDeleteNote: Current requirement in industry is Selenium WebDriver (Version 2.0)
Selenium Training in chennai
Hello Prathap,
ReplyDeleteYou had done a good job here, Amazing set of
selenium interview questions that every tester need to know. Providing here the link for FREE
Selenium Topics Pdf download. All the best
The selenium interview question shared is very good moreover the answers will definitely help to crack the interviews thanks for sharing it
ReplyDeleteSelenium Training in Chennai
really you have posted an interesting article. it will be really helpful to many peoples. thank you for sharing this blog.
ReplyDeleteselenium training in chennai
ReplyDeleteWhen we speak of Selenium, we are actually talking about both its flavours: Selenium WebDriver and Selenium IDE. Both automate browsers in support of web application testing. WebDriver is typically used to create browser-based regression tests, whereas Selenium IDE is most advantageous in creating unit tests, exploratory tests and one-off bug reproduction scripts. There is no need to make further distinctions between the two, however, when discussing Selenium’s advantages and disadvantages.
Selenium Training in Chennai | Selenium Training Institute in Chennai
Hello author,
ReplyDeleteI found your blog while searching for the updates in Selenium Jobs,I am happy to be here. Very useful content and also easily understandable providing.. Believe me I did wrote an post about selenium tutorials for beginners with reference of your blog.
Hi,
ReplyDeleteThanks for sharing the great information about Selenium… Its useful and helpful information…Keep Sharing.
I have read your blog its very attractive and impressive.
ReplyDeleteI like your blog.Thanks for sharing this nice post. keep updating..
Software Testing training in Gurgaon
Nice Blog Is is Very useful Thank You For Sharing python Online Course Bangalore
ReplyDeleteThanks for sharing this post. Hadoop concept is useful in Big data Analytics.
ReplyDeletebig data certification in pune
big data training in pune
big data hadoop training in pune
big data training in pune
ReplyDeleteNice information thank you,if you want more information please visit our link
selenium Online Training
Thanks for sharing this information with us, I always like to read such information regarding selenium .so please keep it up and keep sharing
ReplyDeleteVery interesting Information on selenium. And I Enjoy This Episode Today. Thank You.
ReplyDeletehey
ReplyDeleteGreat Job, what a fantastic post!
this is chock full of useful information I read a lot of blog posts and I never heard of topics like this. I love these topics you made about the Bloggers bucket list.
I can't wait to dig deep and starts utilizing the resources you have given me. your exuberance is refreshing.
https://www.krninformatix.com/
hey
ReplyDeleteGreat Job, what a fantastic post!
this is chock full of useful information I read a lot of blog posts and I never heard of topics like this. I love these topics you made about the Bloggers bucket list.
I can't wait to dig deep and starts utilizing the resources you have given me. your exuberance is refreshing.
BEST SELENIUM TRAINING IN BANGALORE SELENIUM COURSE IN BANGALORE
SELENIUM TRAINING AND PLACEMENTS
https://www.krninformatix.com/
Selenium allows the end users to share and write extensions or other code modifications, even the ones that are project specific. This gives ample freedom to selenium testing companies to write custom functions that do sophisticated manipulations. Using such custom functions allows tester to have more readable tests. Selenium Automation Training London
ReplyDeleteGood Post. I like your blog. Thanks for Sharing.....
ReplyDeleteSelenium course in Noida
Very useful information on selenium and comparison with different types of selenium is also good.
ReplyDeleteSelenium training in chennai | Selenium training in velachery
search engine market - Devoted to publishing the most recent search news, the simplest guides and how-to's for the SEO and Online advertising community
ReplyDeleteThe significant reasons for worry for understudies are tests. There are understudies who end it all as a result of the test pressure. Test dread and test nervousness are things which are normal among understudies of all age gatherings. Some are fit for taking care of test dread and test worry in their won manner. Some fall prey to impacts of test pressure and go to sorrow, perform gravely in tests or even take extraordinary measures. Some of the time, the test weight can give you fits of anxiety. Many individuals find that the worry before tests is regularly more terrible than the real test and it very well may be exacerbated regardless of whether they have more seasoned siblings or sisters who have effectively progressed nicely and feel they need to coordinate to their measures. Take the coaching from Best Coaching Center in East Delhi. The Best Coaching Center in Pandav Nagar provides PCM classes, PCB classes and chemistry classes in Pandav Nagar.
ReplyDeletehttps://www.successnextclick.com/
https://www.cnisolution.net/
Enjoyed reading the article above, really explains everything in detail, the article is very interesting and effective. Thank you and good luck…
ReplyDeleteBecome an Expert In Software Testing Training! The most trusted and trending Programming Language. Learn from experienced Trainers and get the knowledge to crack a coding interview, @Softgen Infotech Located in BTM Layout.
Are you looking for advance 9th and 10th Institute in Delhi,
ReplyDeletewe are going to be the one that’s providing that 9th and 10th Coaching. We are providing a 9th and10th Coaching Institute in Laxmi Nagar.
9th class Coaching
10th class Coaching
9th 10th coaching classes in pandav nagar
coaching for 9th 10th class
Thanks for sharing
ReplyDeletePython Online Training
I am doing automated testing training Thank you so much for sharing these questions it's really gonna help me.
ReplyDeleteSome may stag in Interviews!!! OOPS!! More than 50% of students do this in their career. Instead, do Hadoop Training in Chennai at Infycle. Those students can easily clear this Interview session because more than 5 times at INFYCLE practicing mock-interview sessions, Hence students are Getting out of their interview fear.
ReplyDeleteSoftware Testing: Selenium Interview Questions With Answers >>>>> Download Now
ReplyDelete>>>>> Download Full
Software Testing: Selenium Interview Questions With Answers >>>>> Download LINK
>>>>> Download Now
Software Testing: Selenium Interview Questions With Answers >>>>> Download Full
>>>>> Download LINK 6W
betmatik
ReplyDeletekralbet
betpark
tipobet
slot siteleri
kibris bahis siteleri
poker siteleri
bonus veren siteler
mobil ödeme bahis
V6CQ
https://bayanlarsitesi.com/
ReplyDeleteCihangir
Heybeliada
Yalova
Adana
54QGSD
Erzurum
ReplyDeleteistanbul
Ağrı
Malatya
Trabzon
SLED
whatsapp görüntülü show
ReplyDeleteücretli.show
JET
tekirdağ evden eve nakliyat
ReplyDeletekocaeli evden eve nakliyat
yozgat evden eve nakliyat
osmaniye evden eve nakliyat
amasya evden eve nakliyat
ZJZİAJ
urfa evden eve nakliyat
ReplyDeletemalatya evden eve nakliyat
burdur evden eve nakliyat
kırıkkale evden eve nakliyat
kars evden eve nakliyat
SBP2
779F0
ReplyDeleteNiğde Şehirler Arası Nakliyat
Tekirdağ Cam Balkon
Yozgat Evden Eve Nakliyat
Bursa Parça Eşya Taşıma
İzmir Lojistik
Amasya Parça Eşya Taşıma
Ankara Boya Ustası
Manisa Lojistik
Kucoin Güvenilir mi
C9897
ReplyDeleteHakkari Şehir İçi Nakliyat
Zonguldak Şehirler Arası Nakliyat
Chat Gpt Coin Hangi Borsada
Çankaya Boya Ustası
Zonguldak Parça Eşya Taşıma
Kilis Lojistik
Isparta Lojistik
Wabi Coin Hangi Borsada
Artvin Parça Eşya Taşıma
1ACE7
ReplyDeleteKaraman Evden Eve Nakliyat
Antep Şehir İçi Nakliyat
Nevşehir Evden Eve Nakliyat
Erzincan Evden Eve Nakliyat
Çankaya Fayans Ustası
Antep Evden Eve Nakliyat
Zonguldak Şehirler Arası Nakliyat
Tunceli Parça Eşya Taşıma
Çankırı Şehir İçi Nakliyat
AB388
ReplyDeleteNiğde Şehirler Arası Nakliyat
Çerkezköy Petek Temizleme
Burdur Lojistik
Kırşehir Lojistik
İstanbul Evden Eve Nakliyat
Tekirdağ Boya Ustası
Tekirdağ Parça Eşya Taşıma
MEME Coin Hangi Borsada
Nevşehir Lojistik
F3AC2
ReplyDeleteBalıkesir Evden Eve Nakliyat
Çerkezköy Televizyon Tamircisi
Ankara Parke Ustası
Nevşehir Evden Eve Nakliyat
Cointiger Güvenilir mi
Urfa Evden Eve Nakliyat
Etlik Fayans Ustası
Ünye Oto Lastik
Çerkezköy Kurtarıcı
89049
ReplyDeleteİzmir Evden Eve Nakliyat
Bitmart Güvenilir mi
Ankara Parke Ustası
Kalıcı Makyaj
Bitcoin Nasıl Alınır
Referans Kimliği Nedir
Çerkezköy Mutfak Dolabı
Bilecik Evden Eve Nakliyat
Bayburt Evden Eve Nakliyat
DCEDB
ReplyDeleteCoin Nasıl Çıkarılır
Coin Üretme
Bitcoin Nasıl Para Kazanılır
Binance Borsası Güvenilir mi
Bitcoin Üretme Siteleri
Binance Nasıl Oynanır
Kripto Para Çıkarma Siteleri
Bitcoin Nasıl Kazanılır
Coin Üretme Siteleri
EA8EE
ReplyDeleteCoin Kazma
Bitcoin Kazanma
Bitcoin Nasıl Oynanır
Binance Neden Tercih Edilir
Kripto Para Nasıl Çıkarılır
Binance Nasıl Kayıt Olunur
Binance Ne Zaman Kuruldu
Kripto Para Üretme Siteleri
Bitcoin Üretme Siteleri
6AF4D
ReplyDeleteurfa canlı görüntülü sohbet odaları
düzce canli goruntulu sohbet siteleri
ücretsiz sohbet siteleri
yozgat rastgele sohbet
ordu ücretsiz sohbet odaları
aydın kadınlarla sohbet
Kars En İyi Ücretsiz Sohbet Siteleri
adana canlı sohbet odaları
karaman tamamen ücretsiz sohbet siteleri
7A0CB
ReplyDeleteBitcoin Üretme Siteleri
Onlyfans Takipçi Hilesi
Soundcloud Dinlenme Hilesi
Binance Hesap Açma
Telegram Abone Hilesi
Binance Madencilik Nasıl Yapılır
Bitcoin Giriş Nasıl Yapılır
Parasız Görüntülü Sohbet
Coin Çıkarma Siteleri
1BA4F
ReplyDeletekucoin
referans kimligi nedir
bingx
kucoin
https://kapinagelsin.com.tr/
en güvenilir kripto borsası
bitcoin nasıl üretilir
bybit
okex
A9D67
ReplyDeletekayısı sabunu
bybit
poloniex
binance ne demek
aax
tarçın sabunu
binance
kraken
kızlarla canlı sohbet
1A0CF
ReplyDeletebinance
copy trade nedir
huobi
bitmex
bitget
bingx
referans kimligi nedir
probit
gate io
72F95
ReplyDeletebingx
binance
telegram kripto grupları
canli sohbet
https://kapinagelsin.com.tr/
binance
bitexen
referans kodu
kucoin
27D24
ReplyDeletekripto para nasıl alınır
filtre kağıdı
telegram kripto para kanalları
gate io
bitget
kucoin
kraken
binance ne demek
bitmex
21F85
ReplyDeletesocks5 proxy satın al
vps server satın al
sand coin yorum
xec coin yorum
instagram para kazanma
gal coin yorum
meb ehliyet sınav soruları 2023
ens coin yorum
snx coin yorum
183A8
ReplyDelete----
----
----
----
----
----
matadorbet
----
----
9F59A
ReplyDeleteFilm Önerileri
Facebook Sayfa
iç mimar
güneş paneli
Amazon SEO
Sosyal Medya Danışmanlığı
Youtube SEO
Freelance İş İlanları
dedicated server
7CC17
ReplyDeletetiktok beğeni satın al
Wordpress SEO
facebook grup satın al
yabancı dizi önerileri
Hosting Firmaları
adwords hesap satışı
takipçi satın al twitter
metin2 pvp serverler
bitcoin
79762
ReplyDeleteinstagram yorum satın al
metin2 sunucu kiralama
Twitter Hesap Satın Al
takipci satin alma
Instagram Hesap Satın Al
Tiktok SEO
Silkroad Pvp Serverler
Amazon SEO
socks5 proxy satın al
68F7D
ReplyDeletepvp
Yabancı Dizi Önerileri
Dizi Önerileri
Online Oyunlar
Bitcoin Forum
Vds
Mobil Uygulamalar
Home Office İş İlanları
Yapay Zeka
D658B
ReplyDeleteBoştaki Domainler
mmorpg
Mobil Uygulama Yapma
Instagram Para Kazanma
Silkroad Pvp Serverler
Silkroad Proxy Satın Al
metin2 pvp serverler
yapay zeka
Eticaret Paketleri
A230E
ReplyDeleteCudos Coin Yorum
BTC Forum
Alpine Coin Yorum
Dai Coin Yorum
Trac Coin Yorum
Bitcoin Yorum
Crv Coin Yorum
Bitcoin Son Dakika Haberleri
Slp Coin Yorum
صيانة أفران جدة 0hPHSp4Z0S
ReplyDeleteشركة مكافحة حشرات بالاحساء hCGk2UoUeC
ReplyDeleteGreat and that i have a nifty offer: Where To Start Home Renovation house renovation planner
ReplyDeleteEC9953C9EA
ReplyDeletetakipçi satın al