User Profile
User Widgets
Contributions
Re: How do I select a value in a DevExpress LookupEdit using TestLeft and C#
Hi Maurice, The idea is as follows: 1. Write code to click the lookup text box. 2. Examine the lookup grid in the UI Spy, using "point and click". It should be an IGridView (or, more specifically, IDevExpressXtraGrid). 3. Write a search pattern for the grid. 4. (Optional) Use IGridView.FindRow(column, value) to find the row containing a specific value. 5. Use IGridView.ClickCell(rowIndex, column) to select the desired row by index.12KViews1like1CommentRe: Reusing the Header Parameter
nrrayengar The "Authorization" header must be defined as a security scheme rather than a parameter. In your example, you need to define it as an API key. Check out the examples in: https://swagger.io/docs/specification/authentication/api-keys/888Views0likes0CommentsRe: Api hostnames wIth WWW
Yes, "www.example.com" is a valid hostname, just like "api.example.com" and "subdomain.example.com". The "www" prefix is just a subdomain. An OpenAPI 2.0 definition with this hostname could look like this: swagger: '2.0' host: www.example.com schemes: [https] basePath: /api ... OpenAPI 3.0 version: openapi: 3.0.0 servers: - url: https://www.example.com/api ...554Views1like0CommentsRe: Boolean Parameter and conditional schemas?
OpenAPI Specification does not have a way to describe request/response correlation. See this discussion for details: https://github.com/OAI/OpenAPI-Specification/issues/2031 You can, however, describe these conditions in the description of those response fields and the corresponding parameters.1.2KViews1like1CommentRe: Does anyone know the ECCN - Export Control Classification Number for openapi-generator-cli-5.4.0.jar
Hi nagamalli4u, openapi-generator is not one of our projects. I suggest asking in the openapi-generator project repository instead: https://github.com/OpenAPITools/openapi-generator/issues729Views0likes0Comments