-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathterminalOutput.txt
8110 lines (7048 loc) · 463 KB
/
terminalOutput.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Here's some info about sys.executable: C:\Users\user\OneDrive\Documents\GitHub\Web_Scraper\virtual_environments_smell_like_updog\Scripts\python.exe
This program began running at 2023-11-24 11:38:11
Execution Started -- Opening Firefox Browser
Searching for software engineer, backend engineer jobs...
1/2
2/2
Searching google for... adult films?
TAAAA DDDAAAAAA
GET LOST WIZARD!
Filtering by past 24
--------------------------------
1/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="f88536a8-45d6-4e48-bd1e-42ee593f2a56")>
Here is link #1: https://boards.greenhouse.io/paveakatroveinformationtechnologies/jobs/4336458005?utm_source=Craft+Ventures+job+board&utm_medium=getro.com&gh_src=Craft+Ventures+job+board
--------------------------------
2/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="c05471c0-a1da-45b2-9ad4-73fbda0ac388")>
Here is link #2: https://jobs.lever.co/kueski/0f4c060b-deee-41b5-bccd-699e3901f8a3?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
--------------------------------
3/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="752adf22-4966-47d8-bbd2-1ac7d2268704")>
Here is link #3: https://boards.greenhouse.io/tripadvisor/jobs/5371308?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board
--------------------------------
4/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="3fdc9475-63b9-4a9b-ad78-9730398e851e")>
Here is link #4: https://boards.greenhouse.io/remotecom
--------------------------------
5/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="ce4f4bf1-b8de-4b8b-8460-5805fd300855")>
Here is link #5: https://boards.greenhouse.io/flohealth/jobs/5814683003
--------------------------------
6/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="44e438f2-cfa7-4695-95f6-fe4f00f4ca79")>
Here is link #6: https://boards.greenhouse.io/joinhandshake/
--------------------------------
7/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="381c2be5-6eb2-4e46-86b9-262f6f22bd96")>
Here is link #7: https://boards.greenhouse.io/tripadvisor/jobs/5153413?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board
--------------------------------
8/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="503cbee7-d165-4004-a527-934c876178fd")>
Here is link #8: https://jobs.lever.co/pointclickcare/a965f9d1-8523-4e0e-a0f6-85011bff67c7
--------------------------------
9/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="e6f93ecd-39bc-4569-ad55-944787fd821c")>
Here is link #9: https://boards.greenhouse.io/careervillage/jobs/4147306007?utm_source=remote_rocketship&ref=remote_rocketship
--------------------------------
10/10
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="e78f3d4c-c573-400e-a31e-bb4bd3cb0ff7")>
Here is link #10: https://boards.greenhouse.io/grafanalabs/jobs/5027320004
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="e78f3d4c-c573-400e-a31e-bb4bd3cb0ff7")>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
I am at end of search_results()...
First Index = 0 && Last Index = 10
increment_search_results
****************************************************************
Current Height == 1950
Scrolled...
New Height == 3431
--------------------------------
11/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="beea7150-6bbb-4a5f-8f3c-25e50042c8fa")>
Here is link #11: https://boards.greenhouse.io/upwork/jobs/5815780003
--------------------------------
12/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="c7ee3087-82b2-40fc-925a-10887904f11d")>
Here is link #12: https://boards.greenhouse.io/sonyinteractiveentertainmentglobal
--------------------------------
13/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="7dbca742-b8b1-44b0-a18e-540d48ca2480")>
Here is link #13: https://boards.greenhouse.io/canonicaljobs/jobs/5522288?gh_src=be37fb041us
--------------------------------
14/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="a4c943cf-9de6-4d5e-90b4-1481d8694e66")>
Here is link #14: https://boards.greenhouse.io/canonicaljobs/jobs/5527802?gh_src=e45754581us
--------------------------------
15/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="bf08898b-74b5-43db-92e6-db31419169b1")>
Here is link #15: https://boards.greenhouse.io/doctolib/jobs/5815555003
--------------------------------
16/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="f5698e2a-f321-474c-9388-8314ab381312")>
Here is link #16: https://jobs.lever.co/deputy/294a3523-5fee-4b31-a6b9-d9fd3dcc0c87
--------------------------------
17/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="ab77c0d3-49d4-469c-a237-5b3701b9bdc5")>
Here is link #17: https://jobs.lever.co/nielsen/532208d2-425d-40b2-8ba6-9361918518b4/apply
--------------------------------
18/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="c6d0d46a-1c82-4d9a-9fb6-c8e7d8324020")>
Here is link #18: https://jobs.lever.co/yubico/f384ac40-e1b8-4470-9027-964162d2d412?lever-origin=applied&lever-source%5B%5D=NEA
--------------------------------
19/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="f8c623ed-4eb3-47f2-ba4e-5ec3f67a38a0")>
Here is link #19: https://boards.greenhouse.io/referralsuseonly/jobs/5524819?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app
--------------------------------
20/20
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="493e4313-8645-4667-9960-e9e2fbcd7b1a")>
Here is link #20: https://jobs.lever.co/parallelwireless/f757d622-d5cf-4da2-ad74-38688caacb1f
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="493e4313-8645-4667-9960-e9e2fbcd7b1a")>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
I am at end of search_results()...
First Index = 0 && Last Index = 20
increment_search_results
****************************************************************
Current Height == 3431
Scrolled...
New Height == 4913
--------------------------------
21/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="8321b1b3-c66c-4664-9815-a8dc5c66b226")>
Here is link #21: https://jobs.lever.co/easypost-2/bec0d98a-9229-49f8-9416-79944a1c8338?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
--------------------------------
22/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="570de41a-434c-4557-a96a-8795724bba6c")>
Here is link #22: https://jobs.eu.lever.co/quantinuum/5a9f177d-7827-44a3-b4b3-bd67a6775005
--------------------------------
23/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="d7135935-9d45-4a14-91f8-18f7f859cc91")>
Here is link #23: https://jobs.lever.co/airwallex/602ff299-b2bb-4f93-9be1-e02e610c89b7/apply
--------------------------------
24/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="9ad208d7-abed-4da0-99c2-e8ade428ab31")>
Here is link #24: https://boards.greenhouse.io/canonicaljobs/jobs/5528360?gh_src=836b45a61us
--------------------------------
25/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="a5f8131f-c8cd-467e-b73b-d8ec0d33da3d")>
Here is link #25: https://boards.greenhouse.io/opentable
--------------------------------
26/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="792e94c0-41fb-4f08-b0ba-45602c25f505")>
Here is link #26: https://jobs.lever.co/eventbrite/822aeb2b-a1c2-4121-aa6e-e7aea6cb1bc2/apply?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
--------------------------------
27/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="8ce64245-22a8-4cec-8d82-e976b94d217d")>
Here is link #27: https://boards.greenhouse.io/freshprints
--------------------------------
28/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="e62ae295-bd68-4e85-8fa5-82fa8d0b2965")>
Here is link #28: https://jobs.eu.lever.co/olx/37ba37da-bc69-490f-9adb-059ad263a3e2
--------------------------------
29/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="53c931ce-69b1-44f0-a3bd-a5e80c77a931")>
Here is link #29: https://jobs.lever.co/scanlinevfx/e992511c-e1d8-4090-9890-a4f7a7fe24b5/apply
--------------------------------
30/30
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="ccc539b8-ddb5-4f5f-953b-24608aca1e6d")>
Here is link #30: https://boards.greenhouse.io/rocketlab?t=a25968403us
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="ccc539b8-ddb5-4f5f-953b-24608aca1e6d")>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
I am at end of search_results()...
First Index = 0 && Last Index = 30
increment_search_results
****************************************************************
Current Height == 4913
Scrolled...
New Height == 6135
--------------------------------
31/37
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="bb5f2beb-8afa-4417-8c12-08aad7c6507e")>
Here is link #31: https://jobs.lever.co/super-com/024cf616-045c-497e-897f-49c25e39304f
--------------------------------
32/37
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="9bd4a7cf-76cd-46db-bbce-c765c49fc819")>
Here is link #32: https://jobs.lever.co/tala/2ad5772b-7c14-48c5-908a-b33da3dfaaad
--------------------------------
33/37
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="b85b4ca9-d596-41a0-8937-71a825e8c89d")>
Here is link #33: https://boards.greenhouse.io/cultureamp/jobs/5528693
--------------------------------
34/37
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="d698b636-a857-4356-84e7-b6bc6d205b9b")>
Here is link #34: https://boards.greenhouse.io/harnessinc/jobs/4147768007?utm_source=Menlo+Ventures+job+board&utm_medium=getro.com&gh_src=Menlo+Ventures+job+board
--------------------------------
35/37
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="a6ad40af-f01e-46af-93fd-358cde8b5dcc")>
Here is link #35: https://boards.greenhouse.io/remotecom/jobs/5815912003
--------------------------------
36/37
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="7ccc862e-f3a6-41d6-abc6-3321de171d09")>
Here is link #36: https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
--------------------------------
37/37
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="1c874c8e-4278-4546-83f0-8018023aa4ae")>
Here is link #37: https://jobs.lever.co/deputy/cebcc1a8-7111-44cf-8cc3-2a99a6cf3190
vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
<selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="1c874c8e-4278-4546-83f0-8018023aa4ae")>
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
I am at end of search_results()...
First Index = 0 && Last Index = 37
increment_search_results
****************************************************************
Current Height == 6135
Scrolled...
New Height == 6135
No more search results
I'm the issue 2
I'm the issue 4
--------------------------------------------
Results from this Google Search:
Result #1 from Google Seaech
Job Title: Job Application for Backend Software Engineer at Pave
Link to Job: https://boards.greenhouse.io/paveakatroveinformationtechnologies/jobs/4336458005?utm_source=Craft+Ventures+job+board&utm_medium=getro.com&gh_src=Craft+Ventures+job+board
Result #2 from Google Seaech
Job Title: Kueski - Software Engineer II - Backend
Link to Job: https://jobs.lever.co/kueski/0f4c060b-deee-41b5-bccd-699e3901f8a3?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
Result #3 from Google Seaech
Job Title: Software Engineer II (Full Stack, Data) - at Tripadvisor
Link to Job: https://boards.greenhouse.io/tripadvisor/jobs/5371308?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board
Result #4 from Google Seaech
Job Title: Jobs at Remote
Link to Job: https://boards.greenhouse.io/remotecom
Result #5 from Google Seaech
Job Title: Job Application for Backend Engineer at Flo Health
Link to Job: https://boards.greenhouse.io/flohealth/jobs/5814683003
Result #6 from Google Seaech
Job Title: Open Roles at Handshake
Link to Job: https://boards.greenhouse.io/joinhandshake/
Result #7 from Google Seaech
Job Title: Senior Software Engineer (Full Stack, Data)
Link to Job: https://boards.greenhouse.io/tripadvisor/jobs/5153413?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board
Result #8 from Google Seaech
Job Title: Intermediate Software Engineer - PointClickCare
Link to Job: https://jobs.lever.co/pointclickcare/a965f9d1-8523-4e0e-a0f6-85011bff67c7
Result #9 from Google Seaech
Job Title: Frontend Software Engineer II - at CareerVillage.org
Link to Job: https://boards.greenhouse.io/careervillage/jobs/4147306007?utm_source=remote_rocketship&ref=remote_rocketship
Result #10 from Google Seaech
Job Title: Senior Software Engineer - OpenTelemetry Instrumentation
Link to Job: https://boards.greenhouse.io/grafanalabs/jobs/5027320004
Result #11 from Google Seaech
Job Title: at Upwork - Contract: Senior/Lead Back End Engineer
Link to Job: https://boards.greenhouse.io/upwork/jobs/5815780003
Result #12 from Google Seaech
Job Title: Jobs at PlayStation Global
Link to Job: https://boards.greenhouse.io/sonyinteractiveentertainmentglobal
Result #13 from Google Seaech
Job Title: Job Application for Senior Software Engineer at Canonical
Link to Job: https://boards.greenhouse.io/canonicaljobs/jobs/5522288?gh_src=be37fb041us
Result #14 from Google Seaech
Job Title: Software Engineer (Linux/Python or Go) - Container Images
Link to Job: https://boards.greenhouse.io/canonicaljobs/jobs/5527802?gh_src=e45754581us
Result #15 from Google Seaech
Job Title: Job Application for Senior software engineer (x/f/m) at ...
Link to Job: https://boards.greenhouse.io/doctolib/jobs/5815555003
Result #16 from Google Seaech
Job Title: Lead Software Engineer, Developer Productivity - Deputy
Link to Job: https://jobs.lever.co/deputy/294a3523-5fee-4b31-a6b9-d9fd3dcc0c87
Result #17 from Google Seaech
Job Title: Senior Backend Engineer - Nielsen
Link to Job: https://jobs.lever.co/nielsen/532208d2-425d-40b2-8ba6-9361918518b4/apply
Result #18 from Google Seaech
Job Title: Yubico - Senior Software Engineer (Systems Level)
Link to Job: https://jobs.lever.co/yubico/f384ac40-e1b8-4470-9027-964162d2d412?lever-origin=applied&lever-source%5B%5D=NEA
Result #19 from Google Seaech
Job Title: Search Relevance - Senior Full Stack Software Engineer
Link to Job: https://boards.greenhouse.io/referralsuseonly/jobs/5524819?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app
Result #20 from Google Seaech
Job Title: Parallel Wireless - Junior PHY Software Engineer
Link to Job: https://jobs.lever.co/parallelwireless/f757d622-d5cf-4da2-ad74-38688caacb1f
Result #21 from Google Seaech
Job Title: EasyPost - Senior Software Engineer - Golang
Link to Job: https://jobs.lever.co/easypost-2/bec0d98a-9229-49f8-9416-79944a1c8338?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
Result #22 from Google Seaech
Job Title: Software Engineer, Quantum Chemistry - Quantinuum
Link to Job: https://jobs.eu.lever.co/quantinuum/5a9f177d-7827-44a3-b4b3-bd67a6775005
Result #23 from Google Seaech
Job Title: Airwallex - Software Engineer- New Graduates 2024
Link to Job: https://jobs.lever.co/airwallex/602ff299-b2bb-4f93-9be1-e02e610c89b7/apply
Result #24 from Google Seaech
Job Title: Senior Support & Software Engineer, Saudi Arabia
Link to Job: https://boards.greenhouse.io/canonicaljobs/jobs/5528360?gh_src=836b45a61us
Result #25 from Google Seaech
Job Title: Jobs at OpenTable
Link to Job: https://boards.greenhouse.io/opentable
Result #26 from Google Seaech
Job Title: Principal Software Engineer - Eventbrite
Link to Job: https://jobs.lever.co/eventbrite/822aeb2b-a1c2-4121-aa6e-e7aea6cb1bc2/apply?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
Result #27 from Google Seaech
Job Title: Jobs at Fresh Prints
Link to Job: https://boards.greenhouse.io/freshprints
Result #28 from Google Seaech
Job Title: OLX - Backend Engineer SE I (Kakinada )
Link to Job: https://jobs.eu.lever.co/olx/37ba37da-bc69-490f-9adb-059ad263a3e2
Result #29 from Google Seaech
Job Title: IngΘnieur(e) logiciel senior/ Senior Software Engineer
Link to Job: https://jobs.lever.co/scanlinevfx/e992511c-e1d8-4090-9890-a4f7a7fe24b5/apply
Result #30 from Google Seaech
Job Title: Jobs at Rocket Lab USA
Link to Job: https://boards.greenhouse.io/rocketlab?t=a25968403us
Result #31 from Google Seaech
Job Title: Super.com - Intermediate Full-stack Engineer (Remote)
Link to Job: https://jobs.lever.co/super-com/024cf616-045c-497e-897f-49c25e39304f
Result #32 from Google Seaech
Job Title: Tala - Senior Scala Developer
Link to Job: https://jobs.lever.co/tala/2ad5772b-7c14-48c5-908a-b33da3dfaaad
Result #33 from Google Seaech
Job Title: Job Application for Staff Engineer at Culture Amp
Link to Job: https://boards.greenhouse.io/cultureamp/jobs/5528693
Result #34 from Google Seaech
Job Title: Job Application for Engineering Manager SRM at Harness
Link to Job: https://boards.greenhouse.io/harnessinc/jobs/4147768007?utm_source=Menlo+Ventures+job+board&utm_medium=getro.com&gh_src=Menlo+Ventures+job+board
Result #35 from Google Seaech
Job Title: Job Application for Engineering Team Leader at Remote
Link to Job: https://boards.greenhouse.io/remotecom/jobs/5815912003
Result #36 from Google Seaech
Job Title: Pinkoi - Backend Engineer - Paid Service Squad
Link to Job: https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
Result #37 from Google Seaech
Job Title: Technical Lead - Deputy
Link to Job: https://jobs.lever.co/deputy/cebcc1a8-7111-44cf-8cc3-2a99a6cf3190
--------------------------------------------
Returning back to JobSearchWorkflow
DOPE
['https://boards.greenhouse.io/paveakatroveinformationtechnologies/jobs/4336458005?utm_source=Craft+Ventures+job+board&utm_medium=getro.com&gh_src=Craft+Ventures+job+board', 'https://jobs.lever.co/kueski/0f4c060b-deee-41b5-bccd-699e3901f8a3?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app', 'https://boards.greenhouse.io/tripadvisor/jobs/5371308?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board', 'https://boards.greenhouse.io/remotecom', 'https://boards.greenhouse.io/flohealth/jobs/5814683003', 'https://boards.greenhouse.io/joinhandshake/', 'https://boards.greenhouse.io/tripadvisor/jobs/5153413?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board', 'https://jobs.lever.co/pointclickcare/a965f9d1-8523-4e0e-a0f6-85011bff67c7', 'https://boards.greenhouse.io/careervillage/jobs/4147306007?utm_source=remote_rocketship&ref=remote_rocketship', 'https://boards.greenhouse.io/grafanalabs/jobs/5027320004', 'https://boards.greenhouse.io/upwork/jobs/5815780003', 'https://boards.greenhouse.io/sonyinteractiveentertainmentglobal', 'https://boards.greenhouse.io/canonicaljobs/jobs/5522288?gh_src=be37fb041us', 'https://boards.greenhouse.io/canonicaljobs/jobs/5527802?gh_src=e45754581us', 'https://boards.greenhouse.io/doctolib/jobs/5815555003', 'https://jobs.lever.co/deputy/294a3523-5fee-4b31-a6b9-d9fd3dcc0c87', 'https://jobs.lever.co/nielsen/532208d2-425d-40b2-8ba6-9361918518b4/apply', 'https://jobs.lever.co/yubico/f384ac40-e1b8-4470-9027-964162d2d412?lever-origin=applied&lever-source%5B%5D=NEA', 'https://boards.greenhouse.io/referralsuseonly/jobs/5524819?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app', 'https://jobs.lever.co/parallelwireless/f757d622-d5cf-4da2-ad74-38688caacb1f', 'https://jobs.lever.co/easypost-2/bec0d98a-9229-49f8-9416-79944a1c8338?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app', 'https://jobs.eu.lever.co/quantinuum/5a9f177d-7827-44a3-b4b3-bd67a6775005', 'https://jobs.lever.co/airwallex/602ff299-b2bb-4f93-9be1-e02e610c89b7/apply', 'https://boards.greenhouse.io/canonicaljobs/jobs/5528360?gh_src=836b45a61us', 'https://boards.greenhouse.io/opentable', 'https://jobs.lever.co/eventbrite/822aeb2b-a1c2-4121-aa6e-e7aea6cb1bc2/apply?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app', 'https://boards.greenhouse.io/freshprints', 'https://jobs.eu.lever.co/olx/37ba37da-bc69-490f-9adb-059ad263a3e2', 'https://jobs.lever.co/scanlinevfx/e992511c-e1d8-4090-9890-a4f7a7fe24b5/apply', 'https://boards.greenhouse.io/rocketlab?t=a25968403us', 'https://jobs.lever.co/super-com/024cf616-045c-497e-897f-49c25e39304f', 'https://jobs.lever.co/tala/2ad5772b-7c14-48c5-908a-b33da3dfaaad', 'https://boards.greenhouse.io/cultureamp/jobs/5528693', 'https://boards.greenhouse.io/harnessinc/jobs/4147768007?utm_source=Menlo+Ventures+job+board&utm_medium=getro.com&gh_src=Menlo+Ventures+job+board', 'https://boards.greenhouse.io/remotecom/jobs/5815912003', 'https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227', 'https://jobs.lever.co/deputy/cebcc1a8-7111-44cf-8cc3-2a99a6cf3190']
DOPER
filter_through_google_search_results()
convert_csv_data() =
[['https://boards.greenhouse.io/mill/jobs/4001487005', 'Mill', 'Software Engineer', 'San Bruno , California', '', '75893-6969', '2023-03-14 08:14:32']]
ensure_no_duplicates()
get_job_links_users_applied_to() =
If my calculations are correct this should print a link MUAH HA HA... https://boards.greenhouse.io/mill/jobs/4001487005
These are all the links you already applied to... Tom
['https://boards.greenhouse.io/mill/jobs/4001487005']
And this is when you last applied... Tom
2023-03-14 08:14:32
filter_out_jobs_user_previously_applied_to()
encapsulate_companies_urls()
1) company_filtered_list = ['https://boards.greenhouse.io/tripadvisor/jobs/5371308?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board', 'https://boards.greenhouse.io/tripadvisor/jobs/5153413?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board']
= 2
2) company_filtered_list = ['https://boards.greenhouse.io/remotecom', 'https://boards.greenhouse.io/remotecom/jobs/5815912003']
= 2
3) company_filtered_list = ['https://boards.greenhouse.io/canonicaljobs/jobs/5522288?gh_src=be37fb041us', 'https://boards.greenhouse.io/canonicaljobs/jobs/5527802?gh_src=e45754581us', 'https://boards.greenhouse.io/canonicaljobs/jobs/5528360?gh_src=836b45a61us']
= 3
4) company_filtered_list = ['https://jobs.lever.co/deputy/294a3523-5fee-4b31-a6b9-d9fd3dcc0c87', 'https://jobs.lever.co/deputy/cebcc1a8-7111-44cf-8cc3-2a99a6cf3190']
= 2
Sup Norrington
Index | List to Filter URL | Updated Google Search Results URL
------|-------------------|-----------------------------------
0 | https://boards.greenhouse.io/paveakatroveinformationtechnologies/jobs/4336458005?utm_source=Craft+Ventures+job+board&utm_medium=getro.com&gh_src=Craft+Ventures+job+board | https://boards.greenhouse.io/paveakatroveinformationtechnologies/jobs/4336458005?utm_source=Craft+Ventures+job+board&utm_medium=getro.com&gh_src=Craft+Ventures+job+board
1 | https://jobs.lever.co/kueski/0f4c060b-deee-41b5-bccd-699e3901f8a3?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app | https://jobs.lever.co/kueski/0f4c060b-deee-41b5-bccd-699e3901f8a3?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
2 | https://boards.greenhouse.io/tripadvisor/jobs/5371308?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board | https://boards.greenhouse.io/tripadvisor/jobs/5371308?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board
3 | https://boards.greenhouse.io/remotecom | https://boards.greenhouse.io/remotecom
4 | https://boards.greenhouse.io/flohealth/jobs/5814683003 | https://boards.greenhouse.io/flohealth/jobs/5814683003
5 | https://boards.greenhouse.io/joinhandshake/ | https://boards.greenhouse.io/joinhandshake/
6 | https://boards.greenhouse.io/tripadvisor/jobs/5153413?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board | https://jobs.lever.co/pointclickcare/a965f9d1-8523-4e0e-a0f6-85011bff67c7
7 | https://jobs.lever.co/pointclickcare/a965f9d1-8523-4e0e-a0f6-85011bff67c7 | https://boards.greenhouse.io/careervillage/jobs/4147306007?utm_source=remote_rocketship&ref=remote_rocketship
8 | https://boards.greenhouse.io/careervillage/jobs/4147306007?utm_source=remote_rocketship&ref=remote_rocketship | https://boards.greenhouse.io/grafanalabs/jobs/5027320004
9 | https://boards.greenhouse.io/grafanalabs/jobs/5027320004 | https://boards.greenhouse.io/upwork/jobs/5815780003
10 | https://boards.greenhouse.io/upwork/jobs/5815780003 | https://boards.greenhouse.io/sonyinteractiveentertainmentglobal
11 | https://boards.greenhouse.io/sonyinteractiveentertainmentglobal | https://boards.greenhouse.io/canonicaljobs/jobs/5522288?gh_src=be37fb041us
12 | https://boards.greenhouse.io/canonicaljobs/jobs/5522288?gh_src=be37fb041us | https://boards.greenhouse.io/doctolib/jobs/5815555003
13 | https://boards.greenhouse.io/canonicaljobs/jobs/5527802?gh_src=e45754581us | https://jobs.lever.co/deputy/294a3523-5fee-4b31-a6b9-d9fd3dcc0c87
14 | https://boards.greenhouse.io/doctolib/jobs/5815555003 | https://jobs.lever.co/nielsen/532208d2-425d-40b2-8ba6-9361918518b4/apply
15 | https://jobs.lever.co/deputy/294a3523-5fee-4b31-a6b9-d9fd3dcc0c87 | https://jobs.lever.co/yubico/f384ac40-e1b8-4470-9027-964162d2d412?lever-origin=applied&lever-source%5B%5D=NEA
16 | https://jobs.lever.co/nielsen/532208d2-425d-40b2-8ba6-9361918518b4/apply | https://boards.greenhouse.io/referralsuseonly/jobs/5524819?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app
17 | https://jobs.lever.co/yubico/f384ac40-e1b8-4470-9027-964162d2d412?lever-origin=applied&lever-source%5B%5D=NEA | https://jobs.lever.co/parallelwireless/f757d622-d5cf-4da2-ad74-38688caacb1f
18 | https://boards.greenhouse.io/referralsuseonly/jobs/5524819?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app | https://jobs.lever.co/easypost-2/bec0d98a-9229-49f8-9416-79944a1c8338?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
19 | https://jobs.lever.co/parallelwireless/f757d622-d5cf-4da2-ad74-38688caacb1f | https://jobs.eu.lever.co/quantinuum/5a9f177d-7827-44a3-b4b3-bd67a6775005
20 | https://jobs.lever.co/easypost-2/bec0d98a-9229-49f8-9416-79944a1c8338?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app | https://jobs.lever.co/airwallex/602ff299-b2bb-4f93-9be1-e02e610c89b7/apply
21 | https://jobs.eu.lever.co/quantinuum/5a9f177d-7827-44a3-b4b3-bd67a6775005 | https://boards.greenhouse.io/opentable
22 | https://jobs.lever.co/airwallex/602ff299-b2bb-4f93-9be1-e02e610c89b7/apply | https://jobs.lever.co/eventbrite/822aeb2b-a1c2-4121-aa6e-e7aea6cb1bc2/apply?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app
23 | https://boards.greenhouse.io/canonicaljobs/jobs/5528360?gh_src=836b45a61us | https://boards.greenhouse.io/freshprints
24 | https://boards.greenhouse.io/opentable | https://jobs.eu.lever.co/olx/37ba37da-bc69-490f-9adb-059ad263a3e2
25 | https://jobs.lever.co/eventbrite/822aeb2b-a1c2-4121-aa6e-e7aea6cb1bc2/apply?utm_source=himalayas.app&utm_medium=himalayas.app&utm_campaign=himalayas.app&ref=himalayas.app&source=himalayas.app&lever-origin=applied&lever-source%5B%5D=himalayas.app&lever-requisition-name=himalayas.app&lever-posting-owner-name=himalayas.app&lever-source=himalayas.app&lever-referer=himalayas.app | https://jobs.lever.co/scanlinevfx/e992511c-e1d8-4090-9890-a4f7a7fe24b5/apply
26 | https://boards.greenhouse.io/freshprints | https://boards.greenhouse.io/rocketlab?t=a25968403us
27 | https://jobs.eu.lever.co/olx/37ba37da-bc69-490f-9adb-059ad263a3e2 | https://jobs.lever.co/super-com/024cf616-045c-497e-897f-49c25e39304f
28 | https://jobs.lever.co/scanlinevfx/e992511c-e1d8-4090-9890-a4f7a7fe24b5/apply | https://jobs.lever.co/tala/2ad5772b-7c14-48c5-908a-b33da3dfaaad
29 | https://boards.greenhouse.io/rocketlab?t=a25968403us | https://boards.greenhouse.io/cultureamp/jobs/5528693
30 | https://jobs.lever.co/super-com/024cf616-045c-497e-897f-49c25e39304f | https://boards.greenhouse.io/harnessinc/jobs/4147768007?utm_source=Menlo+Ventures+job+board&utm_medium=getro.com&gh_src=Menlo+Ventures+job+board
31 | https://jobs.lever.co/tala/2ad5772b-7c14-48c5-908a-b33da3dfaaad | https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
32 | https://boards.greenhouse.io/cultureamp/jobs/5528693 | N/A
33 | https://boards.greenhouse.io/harnessinc/jobs/4147768007?utm_source=Menlo+Ventures+job+board&utm_medium=getro.com&gh_src=Menlo+Ventures+job+board | N/A
34 | https://boards.greenhouse.io/remotecom/jobs/5815912003 | N/A
35 | https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227 | N/A
36 | https://jobs.lever.co/deputy/cebcc1a8-7111-44cf-8cc3-2a99a6cf3190 | N/A
load_company_resources()
Loaded Users Information...
load_custom_rules()
dir(config) = ['CUSTOM_RULES', 'CUSTOM_SYNONYMS', 'Q_AND_A', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__spec__']
Attribute: CUSTOM_RULES
Key: Full name, Value: ['FIRST_NAME', ' ', 'MIDDLE_INITIAL', ' ', 'LAST_NAME']
Key: Signature, Value: ['FIRST_NAME', ' ', 'LAST_NAME']
Key: Address, Value: ['91293 Reje Ct.', ' ', 'USERS_CITY', ', ', 'USERS_STATE', ' ', 'USERS_ZIP_CODE']
Key: Start Availability, Value: ['self.time_program_ran add 2 weeks(self.time_program_ran+336hrs)']
Key: Name and Date, Value: ['FIRST_NAME', ' ', 'LAST_NAME', ' ', 'self.time_program_ran']
Key: Software Engineer, Value: ['Software Developer']
Key: Location (City), Value: ['LOCATION_CITY', ', ', 'LOCATION_STATE']
Attribute: CUSTOM_SYNONYMS
Key: phone, Value: ['PHONE_NUMBER', 'PERSONAL_CELL', 'CELLPHONE', 'PHONE']
Key: linkedIn profile, Value: ['LINKEDIN_PROFILE']
Key: website, Value: ['GITHUB_URL']
Key: github, Value: ['GITHUB_URL']
Key: portfolio, Value: ['GITHUB_URL']
Key: require immigration sponsorship, Value: ['US_CITIZEN']
Key: require visa sponsorship, Value: ['US_CITIZEN']
Key: hear about job, Value: ['COME_ACROSS_HOW']
Attribute: Q_AND_A
Key: summary, Value: ["I'm a to do it all! The movie Dodgeball was about me."]
Loaded Custom Rules...
nlp_load()
Loaded Users Information...
Initialized nltk...
Loaded WordNetLemmatizer()...
Begin the powerCore Batman... Robin... I'll need an extra set of hands in a second so hang tight
job_link = https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
job_link_element = <selenium.webdriver.remote.webelement.WebElement (session="0457a23a-b63c-4f8c-8975-2b4e4f35a7a1", element="b6b0ea47-1dc4-4c2a-9d48-51ddb18605b4")>
Scrolled to this place...
Present in DOM: No, Error: Message: Unable to locate element: a
Stacktrace:
RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8
WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:189:5
NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:507:5
dom.find/</<@chrome://remote/content/shared/DOM.sys.mjs:132:16
Displayed: Yes
Enabled: Yes
Scroll Into View: Success
Normal Click: Success
JavaScript Click: Error: Message: The element with the reference b6b0ea47-1dc4-4c2a-9d48-51ddb18605b4 is not known in the current browsing context
Stacktrace:
RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8
WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:189:5
NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:507:5
getKnownElement@chrome://remote/content/marionette/json.sys.mjs:268:11
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:233:20
cloneObject/result<@chrome://remote/content/marionette/json.sys.mjs:48:52
cloneObject@chrome://remote/content/marionette/json.sys.mjs:48:25
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:240:16
cloneObject@chrome://remote/content/marionette/json.sys.mjs:54:24
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:240:16
json.deserialize@chrome://remote/content/marionette/json.sys.mjs:244:10
receiveMessage@chrome://remote/content/marionette/actors/MarionetteCommandsChild.sys.mjs:72:30
Has Children: Error: Message: The element with the reference b6b0ea47-1dc4-4c2a-9d48-51ddb18605b4 is not known in the current browsing context
Stacktrace:
RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8
WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:189:5
NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:507:5
getKnownElement@chrome://remote/content/marionette/json.sys.mjs:268:11
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:233:20
cloneObject@chrome://remote/content/marionette/json.sys.mjs:54:24
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:240:16
cloneObject@chrome://remote/content/marionette/json.sys.mjs:54:24
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:240:16
json.deserialize@chrome://remote/content/marionette/json.sys.mjs:244:10
receiveMessage@chrome://remote/content/marionette/actors/MarionetteCommandsChild.sys.mjs:72:30
Covered by another element: Error: Message: The element with the reference b6b0ea47-1dc4-4c2a-9d48-51ddb18605b4 is not known in the current browsing context
Stacktrace:
RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8
WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:189:5
NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:507:5
getKnownElement@chrome://remote/content/marionette/json.sys.mjs:268:11
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:233:20
cloneObject/result<@chrome://remote/content/marionette/json.sys.mjs:48:52
cloneObject@chrome://remote/content/marionette/json.sys.mjs:48:25
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:240:16
cloneObject@chrome://remote/content/marionette/json.sys.mjs:54:24
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:240:16
json.deserialize@chrome://remote/content/marionette/json.sys.mjs:244:10
receiveMessage@chrome://remote/content/marionette/actors/MarionetteCommandsChild.sys.mjs:72:30
safe_click()
1) Normal click attempt
This dumb thing didn't work!
2) Waiting for element to be clickable attempt
Safe click failed: Message: The element with the reference b6b0ea47-1dc4-4c2a-9d48-51ddb18605b4 is not known in the current browsing context
Stacktrace:
RemoteError@chrome://remote/content/shared/RemoteError.sys.mjs:8:8
WebDriverError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:189:5
NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.sys.mjs:507:5
getKnownElement@chrome://remote/content/marionette/json.sys.mjs:268:11
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:233:20
cloneObject@chrome://remote/content/marionette/json.sys.mjs:54:24
deserializeJSON@chrome://remote/content/marionette/json.sys.mjs:240:16
json.deserialize@chrome://remote/content/marionette/json.sys.mjs:244:10
receiveMessage@chrome://remote/content/marionette/actors/MarionetteCommandsChild.sys.mjs:72:30
Diagnostics after clicking a link: {'Current URL': 'https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227', 'Number of <a> Tags': 5, 'First <a> Tag Visible': True}
Accidently clicked whoops...
wait_for_element_explicitly()
Or was it an accident!
consolidate_job_links_by_company()
job_link = https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
vs.
companies_url_list[0] = https://boards.greenhouse.io/tripadvisor/jobs/5371308?utm_source=Travel+Tech+Essentialist+job+board&utm_medium=getro.com&gh_src=Travel+Tech+Essentialist+job+board
--------------------------------
job_link = https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
vs.
companies_url_list[0] = https://boards.greenhouse.io/remotecom
--------------------------------
job_link = https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
vs.
companies_url_list[0] = https://boards.greenhouse.io/canonicaljobs/jobs/5522288?gh_src=be37fb041us
--------------------------------
job_link = https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
vs.
companies_url_list[0] = https://jobs.lever.co/deputy/294a3523-5fee-4b31-a6b9-d9fd3dcc0c87
--------------------------------
--------------------------------------------
Transferring power to CompanyOpeningsAndApplications
self._companys_internal_job_openings_URL = None
company_workflow()
>>>>> https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
determine_application_company_name()
self.current_url = https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
determine_current_page()
job_link = https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
apply_beautifulsoup()
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
-Job Description Page
update_soup_elements()
og_webpage_num = 1
is_internal_job_openings_URL_present()
recognized_pattern_based_url()
url_parser()
self._companys_internal_job_openings_URL = https://jobs.lever.co/pinkoi
Method executed when companys_internal_job_openings_URL is set!
check_if_webpage_changed()
Should only skip the 1st index as that will be the only current_url value that we assign to current_value prior to an iteration in this for loop
The current url is https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
>Internal-Job-Listings<
check_companies_other_job_openings()
change_page()
adjust_for_new_webpage()
set_current_url()
reset_webpages_soup_elements()
reset_webpages_variable_elements()
apply_beautifulsoup()
*
* *
* * *
* * * *
* * * * *
collect_companies_current_job_openings()
:-----------------------------------------------------------------------
Large Category Header:Business
Posting Category Title:Category
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/c31ff321-7bc0-44bd-9581-6e28274452d4
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Senior Category Marketing Specialist / ????????
job_title_parts = ['senior category marketing specialist', '????????']
Job FAILED!!
:-----------------------------------------------------------------------
Posting Category Title:Designer Relations
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/190a6a11-7071-411d-8ab2-39080a41234f
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Account Manager - Japan / ???????????
job_title_parts = ['account manager - japan', '???????????']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/1f6a16a2-fc8d-46b4-a9f3-39781d3c046d
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Account Manager - Thailand
job_title_parts = ['account manager - thailand']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/26fdcf52-9b39-4a62-8f98-e3e39fbece7d
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Account Manager / ??????
job_title_parts = ['account manager', '??????']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/384b67ba-f39b-47b2-8346-65f5cdbe5aed
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Account Specialist / ??????
job_title_parts = ['account specialist', '??????']
Job FAILED!!
:-----------------------------------------------------------------------
Posting Category Title:Marketing & Communitcations
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/7c5b8b33-6a19-4343-8f3e-b0643020e7c9
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Digital Marketing Assistant - Hong Kong & Macau (Part-time)
job_title_parts = ['digital marketing assistant - hong kong & macau (part-time)']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/0d3e6ac5-f431-4736-94d9-d0448373f4f6
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Digital Marketing Specialist - Japan / ?????????????
job_title_parts = ['digital marketing specialist - japan', '?????????????']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/698a1c55-55e3-40d2-ac91-be4be736b871
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Marketing Manager - Japan / ?????????????
job_title_parts = ['marketing manager - japan', '?????????????']
Job FAILED!!
:-----------------------------------------------------------------------
Posting Category Title:Shop Management
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/70638965-372c-4b80-9683-4e5fd565827d
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Shop Management & Logistics Specialist
job_title_parts = ['shop management & logistics specialist']
Job FAILED!!
:-----------------------------------------------------------------------
Large Category Header:Engineering
Posting Category Title:Backend
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Backend Engineer - Paid Service Squad
job_title_parts = ['backend engineer - paid service squad']
backend engineer - paid service squad
Job PASSED!!
get_experience_level()
get_absolute_url()
print_job_details()
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Job URL:https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
Job Title:Backend Engineer - Paid Service Squad
Job Location:Taipei
Company Department:None
Employment Type:Full-time
Job Workplace Type:On-siteáù
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
check_users_basic_requirements()
self.current_jobs_details = {}
job_title = Backend Engineer - Paid Service Squad
job_location = Taipei
job_workplaceType = On-siteáù
self.users_job_search_requirements['entry_level'] = True
users_basic_requirements_experience_level()
False -- No experience keywords found in the Job Title!
user_basic_requirements_location_workplaceType()
workplaceType didn't work correctly
STEP 3:
----------------------------------------------------------------------------------------------------
print_company_job_openings()
company_job_openings
lever
JobTitle: Backend Engineer - Paid Service Squad
JobLocation: Taipei
WorkPlaceTypes: On-siteáù
CompanyDepartment: None
JobTeamInCompany: <div class="posting-category-title large-category-label">Backend</div>
JobHREF: https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
ButtonToJob: https://jobs.lever.co/pinkoi/710a01f7-bc0b-49c7-8965-519d63649227
----------------------------------------------------------------------------------------------------
::----------------------------------------------------------------------
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/f9f13575-7e31-480a-9412-e3a274911bcc
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Backend Engineer - Platform Squad
job_title_parts = ['backend engineer - platform squad']
backend engineer - platform squad
Job PASSED!!
get_experience_level()
get_absolute_url()
print_job_details()
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Job URL:https://jobs.lever.co/pinkoi/f9f13575-7e31-480a-9412-e3a274911bcc
Job Title:Backend Engineer - Platform Squad
Job Location:Taipei
Company Department:None
Employment Type:Full-time
Job Workplace Type:On-siteáù
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
check_users_basic_requirements()
self.current_jobs_details = {}
job_title = Backend Engineer - Platform Squad
job_location = Taipei
job_workplaceType = On-siteáù
self.users_job_search_requirements['entry_level'] = True
users_basic_requirements_experience_level()
False -- No experience keywords found in the Job Title!
user_basic_requirements_location_workplaceType()
workplaceType didn't work correctly
STEP 3:
----------------------------------------------------------------------------------------------------
print_company_job_openings()
company_job_openings
lever
JobTitle: Backend Engineer - Platform Squad
JobLocation: Taipei
WorkPlaceTypes: On-siteáù
CompanyDepartment: None
JobTeamInCompany: <div class="posting-category-title large-category-label">Backend</div>
JobHREF: https://jobs.lever.co/pinkoi/f9f13575-7e31-480a-9412-e3a274911bcc
ButtonToJob: https://jobs.lever.co/pinkoi/f9f13575-7e31-480a-9412-e3a274911bcc
----------------------------------------------------------------------------------------------------
::----------------------------------------------------------------------
:-----------------------------------------------------------------------
Posting Category Title:Data
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/3c3aa2b0-bc36-4785-852f-3a2ce473c78b
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Data Engineer - Analytics
job_title_parts = ['data engineer - analytics']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/bfc2257f-5965-400d-ae18-f890cef4dd01
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Machine Learning Engineer - AI Squad
job_title_parts = ['machine learning engineer - ai squad']
Job FAILED!!
:-----------------------------------------------------------------------
Posting Category Title:Frontend
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/170f5705-930d-4d97-ab82-58393c6ab111
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Frontend Engineer - Buyer Engagement Squad
job_title_parts = ['frontend engineer - buyer engagement squad']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/b21dd722-1ca6-4f2b-a996-142691058b47
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Frontend Engineer - Paid Service Squad
job_title_parts = ['frontend engineer - paid service squad']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/e1f91b6c-5996-4e77-9c1a-491b0971b879
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Frontend Engineer - Platform Squad
job_title_parts = ['frontend engineer - platform squad']
Job FAILED!!
:-----------------------------------------------------------------------
Large Category Header:Marketing & Communications
Posting Category Title:Digital Marketing
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/8db4a0ce-f3d9-4aba-86ec-4e9f3fc3d9a1
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Digital Performance Marketing Specialist
job_title_parts = ['digital performance marketing specialist']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/fc1d35bd-6911-4b74-a5eb-43b2745a1fe0
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
??????
job_title_parts = ['??????']
Job FAILED!!
:-----------------------------------------------------------------------
Large Category Header:Operations
Posting Category Title:Finance & Accounting
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/32b5c3f1-3138-4131-9ba8-4c00e9fc07aa
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Finance Manager / ????
job_title_parts = ['finance manager', '????']
Job FAILED!!
:-----------------------------------------------------------------------
Posting Category Title:People Operations
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/59a7dd78-33d8-42e3-aad8-2ff6809fb978
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
HR Business Partner
job_title_parts = ['hr business partner']
Job FAILED!!
:-----------------------------------------------------------------------
Large Category Header:Product
Posting Category Title:Analysis
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/445f8f8e-d3db-4844-9005-7d493826c5f3
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Business Analyst / ?????
job_title_parts = ['business analyst', '?????']
Job FAILED!!
:-----------------------------------------------------------------------
Posting Category Title:Product Management
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/0d3063a3-2cb3-4fcd-9753-26fbcb849248
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Product Manager - Business Success Squad
job_title_parts = ['product manager - business success squad']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/dfe63e67-823a-4914-b744-b9874f9c05f0
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
Project Manager - Paid Service Squad
job_title_parts = ['project manager - paid service squad']
Job FAILED!!
:-----------------------------------------------------------------------
Posting Category Title:General Talents
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/212e933c-df6c-4425-877c-c014ececcb57
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
You're a talent, but can't find specific opportunities to apply for?
job_title_parts = ["you're a talent", "but can't find specific opportunities to apply for?"]
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/d7ab7be0-0640-41a3-b021-aeda188d24ce
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
????????????????????????
job_title_parts = ['????????????????????????']
Job FAILED!!
:-----------------------------------------------------------------------
Apply Button URL: https://jobs.lever.co/pinkoi/c1367178-9251-4ae1-9038-5e63c33368e3
users_basic_requirements_job_title()
['software engineer', 'backend engineer']
vs.
??????????????
job_title_parts = ['??????????????']
Job FAILED!!