Posts by Pedro Henrique • 43 points
4 posts
-
1
votes0
answers47
viewsQ: Chromedriver rebooting in all tests
Following a tutorial, my stepDefinitions page looks like this: @RunWith(DataDrivenTestRunner.class) @DataLoader(filePaths = "credenciaisv2.csv") public class CadastrarOLTTest { private WebDriver…
-
1
votes1
answer1403
viewsA: Refresh without losing data, is it possible?
For those who may be interested, it follows the way to store the comments in the browser’s location and not lose them with a simple refresh on the page. Even the Storage location allows data to be…
-
0
votes1
answer1403
viewsQ: Refresh without losing data, is it possible?
The code below allows the user to enter a comment that is returned by the ajax callback to the same page. There is a way via javascript or php that to upgrade the page the inserted comments are not…
-
2
votes2
answers92
viewsQ: Ajax does not send data to php!
The code in Ajax works perfectly but the data is not sent to php! Where am I going wrong? AJAX.php <!DOCTYPE html> <html> <head> <title>AJAX</title> <script…