Posts by André Luan • 181 points
7 posts
-
2
votes1
answer498
viewsA: Elementnotvisibleexception Selenium
The error is quite clear: the element you are trying to select is not visible. This can be caused by some factors such as: the visibility of the element depends on a certain action on the page or…
-
4
votes1
answer49
viewsA: Query returning unwanted result
Failed to add the following in the Inner Join: AND T.CONSTRAINT_NAME = C.CONSTRAINT_NAME Otherwise it will duplicate information because TABLE_NAME is both for PK and for FK, so it brings both…
-
1
votes1
answer500
viewsA: Fixed Action Button in Materializecss does not work
According to the documentation itself, you missed importing jQuery before the JS of Materialize, in this way: <script type="text/javascript"…
-
2
votes2
answers95
viewsA: Doubt SQL Server
You can use a left Join for this: select fun.nome_func, dep.nome_dep from funcionario fun left join dependente dep on dep.cod_func = fun.cod_func; The return would be something like: nome_func |…
sql-serveranswered André Luan 181 -
1
votes1
answer2166
viewsA: Redirect and Render in Django
The render() function does not change the url, only what is displayed by it. The correct one would actually be to use redirect() in conjunction with Reverse(). The job of Reverse is to find the full…
-
0
votes1
answer855
viewsA: Nodejs - Redirect to error page when unable to access through GET
Express follows a priority list on the routes, meaning it takes the requested url and tries to "fit" it into every possible route in your application. The simplest way to solve this is to add a…
-
2
votes1
answer276
viewsA: Create an ISO in Docker and you don’t have it in the hub.Docker
Since the image does not exist, you will need to create it. This is done with a file called Dockerfile that has more or less this structure: FROM ubuntu:14.04 EXPOSE 80 VOLUME /src WORKDIR /src RUN…
dockeranswered André Luan 181