| bio | website | loader.io |
|---|---|---|
| location | Anaheim, CA | |
| age | 30 | |
| visits | member for | 2 years |
| seen | 6 hours ago | |
| stats | profile views | 39 |
I believe in and strive for quality - may it be products, code, comments, documentation or anything else that I do. Effort and attitude counts more than the final result.
Check out this load testing tool (developed by devs at the company I work for):
|
Dec 3 |
comment |
check for value if found before adding it to my drop down list? @corsiKa - Got it, thanks. |
|
Nov 30 |
comment |
check for value if found before adding it to my drop down list? I think this is not really a testing question, it is a basic programming question. Just the fact that you are using webdriver does not make it a test question. You just need to debug your code. Use the print statement as suggested by user246. |
|
Nov 15 |
comment |
Loading test data from MySQL database Actually just remembered the reason I wrote that - in a case where you want to start with a clean database, you can have a script delete all tables from the DB and then use the mysqldump to create the schema and insert the data. |
|
Nov 15 |
comment |
Loading test data from MySQL database As far as the machine is concerned, I don't think much. That's the reason I used 'might'. I think this is a good thread to read some opinions - stackoverflow.com/questions/467452/… |
|
Nov 14 |
comment |
When can we say a defect is “Open”? As a first step to tackle any confusion regarding the terminologies used by a team, I would talk to the team members. They are in the best position to give you an answer and it will also help to start a conversation and be more comfortable with them. |
|
Nov 14 |
comment |
When can we say a defect is “Open”? +1 for the fact that it can differ from team to team, but make sure to be in sync with the team. |
|
Oct 25 |
comment |
What is page object modelling? and Why is it so important? This gives a good insight on the topic: code.google.com/p/selenium/wiki/PageObjects. Also there are quite a few articles on the topic online, so is there anything specific you are looking for or just a general idea of people's view? |
|
Oct 23 |
comment |
iOS UIAutomation UIAElement.isVisible() throwing stale response? What if you check for existence before checking for visibility: if exists {if visible: return} |
|
Oct 19 |
comment |
WebDriverWait or ImplicitlyWait or ExplictlyWait nothing works What do you mean by it does not work? Are there any errors or that the statement does not result in wait? |
|
Oct 19 |
comment |
How to capture the errors handling in Selenium WebDriver Also see if this question is in the line of yours? -- stackoverflow.com/questions/8754615/… |
|
Oct 19 |
comment |
How to capture the errors handling in Selenium WebDriver Just to be clear, do you want to catch exceptions thrown by WebDriver OR are you looking to handle your test failures gracefully? |
|
Oct 15 |
comment |
Select a certain item by clicking a link beside that item Need some more of the html. Please provide the parent tag as that would be very useful in this case e.g. <table> tag and possibly the one above that too. |
|
Oct 13 |
comment |
Selenium not recognizing actions on JavaScript-generated page I have faced an issue similar to this before? Check out this question: sqa.stackexchange.com/questions/1039/… |
|
Oct 13 |
comment |
What are the building blocks of QTP 10 Automation Object Model Where have you searched so far for this information? Looking up google for "qtp object model", I found a lot of results. Did none of this help you? |
|
Oct 10 |
comment |
Select a certain item by clicking a link beside that item Finally edited, hopefully it doesn't change the original question |
|
Oct 10 |
comment |
Select a certain item by clicking a link beside that item That's my point. If the label and the select are separate elements, which it seems from the question it won't work. |
|
Oct 10 |
comment |
Select a certain item by clicking a link beside that item I think he/she is looking to click the "select" next to mahmoud, and seems like "mahmoud" is not a link |
|
Oct 9 |
comment |
Selenium RC Type command not working on IE10 You can look at this question: sqa.stackexchange.com/questions/3915/… OR just type up "selenium rc browser compatibility" in google and you will get your answer. |
|
Oct 9 |
comment |
Select a certain item by clicking a link beside that item Tried to edit, but gave up half way. Absolutely can't understand the question. Please break down your question into smaller statements. |
|
Oct 8 |
comment |
Testing with no QA team in an agile development environment What if developing as fast as possible creates more bugs? This will increases the amount of time spent in testing + documenting bugs + fixing + (all 3 again). If the developers are creating a code with too many bugs, developing faster will only make the matters worse. |