ContributionsMost RecentMost LikesSolutionsRe: 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 desiredrow by index. Re: TypeError: (0 , zt.isPlainObject) is not a function HiLojalis_Frank,can you please post your API definition? Re: Reusing the Header Parameter nrrayengarThe "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/ Re: 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 ... Re: 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. Re: Does anyone know the ECCN - Export Control Classification Number for openapi-generator-cli-5.4.0.jar Hinagamalli4u, openapi-generator is not one of our projects. I suggest asking in the openapi-generator project repository instead: https://github.com/OpenAPITools/openapi-generator/issues Re: Log4jReadyAPI 3.20.1 includes Log4j 2.17.1.Re: SwaggerHub Free plan branding question Docs brandingis available to organizations on Team and Enterprise plans. It's not available on free plans. Re: Swagger Spec Parsing | NodeJS library for example payload generation Check out the openapi-sampler library. Re: How do I make Swagger use form inputs Swagger UI 3.x and 4.x do not have a form editor for JSON objects. Here's the corresponding enhancement request that you can track: https://github.com/swagger-api/swagger-ui/issues/2771