Posts by Rebeca Nonato • 1,163 points
59 posts
-
0
votes2
answers78
viewsA: Send Id via Independent Components from a Link and Miter, Angular 2 (7)?
Well, I managed to, but via Link. Follows the answer: https://stackblitz.com/edit/angular-xumrue If anyone gets something the other way, post please.…
angularanswered Rebeca Nonato 1,163 -
4
votes1
answer800
viewsQ: How to access Httperrorresponse data (error.Message) by Angular 2 (7)?
Code Component.ts delete(i: number) { this.formConcluido = false; this.formConcluidoErro = false; this.cidadeDeletar = this.cidades[i]; this.cidadeDeletarId = this.cidadeDeletar.Id;…
-
0
votes2
answers78
viewsQ: Send Id via Independent Components from a Link and Miter, Angular 2 (7)?
I need to communicate between two components. From a selection (First Component), I send the ID to the other component, in ngOnInit I receive the value of this ID (Second Component), but when I try…
angularasked Rebeca Nonato 1,163 -
4
votes2
answers3741
viewsA: Take a select value at the angle
I know it has been a long time the question. But, I also searched and found the answer. How I got, I will answer. For future consultations. In HTML: <select class="form-control" type="number"…
-
0
votes1
answer75
viewsQ: (C#) Does the Code Not Save the information in the array (table)?
I have the code below. Its purpose is to check if it already exists in the table SalaReservada an appointment on the same day/time/room. If any, I check the next room I brought codSala, and if it…
c#asked Rebeca Nonato 1,163 -
2
votes0
answers313
viewsQ: (C#) - Receive a date from the Console, and return if the date received is Considered a Business Day? Consider Holidays
The user will enter a date (DD/MM/YYYY), and the Program must return whether the date day is useful or not. I’ve been part of the code considering Weekend (Saturday and Sunday) not useful. I want to…
c#asked Rebeca Nonato 1,163 -
0
votes2
answers152
viewsA: How to recover the second text in a validation with Assertequals
managed to make: The following is, in case, I had to navigate between all the Parents, to get to what I wanted. So I used 3 types of By (id, classname, tagname). I just didn’t know about the…
-
0
votes2
answers152
viewsQ: How to recover the second text in a validation with Assertequals
I have that code: And I’m trying to retrieve the text "Test Automation". then I made the following code. WebElement idMenu = navegador.findElement(By.id("dropdown-menu-profile")); String…
-
1
votes1
answer145
viewsQ: What is the difference between these forms of command execution?
These commands in Python: lista = eval('[' + input("Digite sua lista: ") + ']') And this: lista = input("Digite sua lista: ") And this: lista = [int(x) for x in input().strip()] Why the latter gives…