| bio | website | dalewriting.dale.emery.name |
|---|---|---|
| location | Sacramento, CA | |
| age | 54 | |
| visits | member for | 2 years |
| seen | 5 hours ago | |
| stats | profile views | 28 |
I write non-fiction about leadership, software development, testing, and resistance to change.
I also write fiction (primarily the beginnings and middles of yet-to-be-finished novels) in a variety of speculative genres.
I also write about writing.
|
Nov 20 |
comment |
Are Selenium functional tests reliable enough to be worthwhile? I'm glad I could help. By the way, I thought you were great in the Batman movies. |
|
Jan 28 |
comment |
Need more info on logging and debugging framework using Selenium Ah. Thanks for the update. |
|
Jan 20 |
comment |
Send keys to no element in particular You can send the keys to the body of the html page. Or do you mean you want to send keys to the browser itself, and not to something rendered on the page? |
|
Nov 21 |
comment |
Automated testing tools for iOS apps I like Frank, too. I wrote Victor, the Java front end: github.com/dhemery/victor |
|
Jun 3 |
comment |
In agile (Scrum) practices, where do I start with making Q&A (testing) more efficient if the team is transitioning from waterfall to agile? It's hard to know what formats will work for you until you try some stuff and gain experience. For now, take an experimental attitude. I wouldn't worry about nailing down a format yet (if ever). That may become more important as you select tools for automating your examples. But for now, focus on making the examples really clear, without delving into incidental details. That's hard enough. The format will follow. |
|
Jun 2 |
comment |
How to 'Mock' SVN @BJ: It's true that SVN doesn't cost money. It does cost time, which can be precious in an automated test suite. Any code that directly uses the file system or the network can significantly increase the execution time of the test. If enough tests use such slow resources, your suite begins to crawl, and the feedback delays become troublesome. It's common to mock that kind of code, especially in unit tests, but also in acceptance tests from which you want very fast feedback. |
|
Jun 1 |
comment |
what should I do if my stability tests cycle is longer than the release cycle ? Can you say more about why the test cycle can't be shortened, and why you can't run two releases concurrently? |