Posts by Rodrigo Gonçalves • 25 points
5 posts
-
0
votes1
answer47
viewsQ: I cannot use the Firstordefault method on an Iwebelement type
I am unable to use the Firstordefault method with Selenium public IWebElement RetornaRegistro(string titulo) { var trs = _driver.FindElement(By.CssSelector("table tbody tr")); var alvo =…
-
2
votes2
answers636
viewsQ: Error creating ASP.Net Core 2.0 database - Keyword not supported: 'initial Catalog
Hello, I am trying to create a database with SQL Server using the Entity Framework Core, but this presenting the following error: Keyword not supported: 'initial Catalog'. Does anyone know what it…
-
0
votes1
answer120
viewsQ: Error entering data into database with Jquery and Ajax
This code snippet always returns ERROR: 200. It is entering the data into the database normally, but returns error in the interface. $("#registrar").click(function(){ $.ajax({ url : "registra.php",…
-
0
votes2
answers165
viewsA: Inserting data into postgresSQL database with PHO, AJAX and JQUERY
Thanks for the help person, was missing the blessed ";" at the end of this stretch $comando = "INSERT INTO disputas (participante1, participante2, score1, score2) VALUES ('$participante1',…
-
0
votes2
answers165
viewsQ: Inserting data into postgresSQL database with PHO, AJAX and JQUERY
I am trying to insert data into a postgres database using php and ajax with jquery. But always error. It is for a college job. Could someone explain to me the error in the code?…